Jakarta Commons Cookbook
Home > Computing and Information Technology > Computer programming / software engineering > Web programming > Jakarta Commons Cookbook: (Cookbooks Ser.)
Jakarta Commons Cookbook: (Cookbooks Ser.)

Jakarta Commons Cookbook: (Cookbooks Ser.)


     0     
5
4
3
2
1



Out of Stock


Notify me when this book is in stock
X
About the Book

As a Java developer, you're always looking for tools to help in your web and application development. Maybe you've heard of the Jakarta Commons open source Java tools. The Jakarta Commons is an open source Jakarta subproject where developers create and maintain a collection of twenty-plus independent Java components and utilities that serve useful purposes. Jakarta Commons packages include utilities for web, XML, networking, building and testing applications, and some that help other packages work better together. Jakarta Commons packages are designed to be reusable. Each one is a time saver by itself, and when used in combination the results can be very powerful. But in searching for information on the Jakarta Commons tools, you find it hard to locate documentation relevant to your needs. You don't have lots of time to spend searching for information on a specific Jakarta Commons tool to determine what it does and how to incorporate it in your code. If you are looking for a single source for clear information and samples on how to use the Jakarta Commons tools, then the Jakarta Commons Cookbook is for you. The Jakarta Commons Cookbook summarizes each of the available Jakarta Commons packages and contains practical and efficient recipes for making the most out of the Jakarta Commons open source Java tools. You don't have to be an expert, since the book explains how and why to use a utility, pitfalls to avoid, and where to look for additional information on Jakarta Commons utilities. It introduces design possibilities and explores combining Jakarta Commons utilities in novel assemblies to create complex applications. The book offers detailed code samples and insider tips--making it a valuable resource whether you are an expert Java developer or a novice. If you want to quickly learn how to use Jakarta Commons timing-saving utilities or have an invaluable resource for Jakarta Commons questions and techniques, then the Jakarta Commons Cookbook is for you.

Table of Contents:
Preface 1. Supplements to the Java 2 Platform 1.1 Obtaining Commons Lang 1.2 Joining the Commons-User Mailing List 1.3 Getting the Commons Lang Source Code 1.4 Automating the Generation of toString( ) Content 1.5 Customizing Generated toString( ) Content 1.6 Automating hashCode( ) and equals( ); 1.7 Automating compareTo( ) 1.8 Printing an Array 1.9 Cloning and Reversing Arrays 1.10 Transforming Between Object Arrays and Primitive Arrays 1.11 Finding Items in an Array; 1.12 Creating a Map from a Multidimensional Array 1.13 Formatting Dates 1.14 Rounding Date Objects 1.15 Truncating Date Objects 1.16 Creating an Enum 1.17 Generating Unique Numeric Identifiers 1.18 Validation of Method Parameters 1.19 Measuring Time 2. Manipulating Text 2.1 Setting Up StringUtils and WordUtils 2.2 Checking for an Empty String 2.3 Abbreviating Strings 2.4 Splitting a String 2.5 Finding Nested Strings 2.6 Stripping and Trimming a String 2.7 Chomping a String 2.8 Creating an Emphasized Header 2.9 Reversing a String 2.10 Wrapping Words 2.11 Testing the Contents of a String 2.12 Measuring the Frequency of a String; 2.13 Parsing Formatted Strings 2.14 Calculating String Difference 2.15 Using Commons Codec 2.16 Getting the Commons Codec Source Code 2.17 Calculating Soundex 3. JavaBeans; 3.1 Representing Beans Graphically 3.2 Obtaining Commons BeanUtils 3.3 Getting the Commons BeanUtils Source Code 3.4 Accessing Simple Bean Properties 3.5 Accessing Nested Bean Properties 3.6 Accessing Indexed Bean Properties 3.7 Accessing Mapped Bean Properties 3.8 Accessing a Simple, Nested, Indexed, and Mapped Bean Property 3.9 Determining the Type of a Bean Property 3.10 Comparing Beans 3.11 Copying Bean Properties 3.12 Cloning a Bean 3.13 Setting a Bean Property; 3.14 Testing Property Access 3.15 Validating Beans with Predicates 3.16 Creating a Map of Bean Properties 3.17 Wrapping a Bean with a Map 3.18 Creating a Dynamic Bean 3.19 Getting and Setting Properties as Strings 4. Functors 4.1 Obtaining Commons Collections 4.2 Getting the Commons Collections Source Code; 4.3 Reversing a Comparator 4.4 Chaining Comparators 4.5 Comparing Nulls 4.6 Fixed-Order Comparison 4.7 Using Simple Predicates 4.8 Writing a Custom Predicate 4.9 Creating Composite Predicates 4.10 Transforming Objects 4.11 Creating a Chain of Transformations 4.12 Applying Conditional Transformations 4.13 Writing a Closure 4.14 Chaining Closures 4.15 Modeling Conditional Statements with Closures; 4.16 Modeling Loops with Closures 5. Collections 5.1 Obtaining Commons Collections 5.2 Using a Looping Iterator 5.3 Iterating Over an ArrayList 5.4 Filtering a Collection with a Predicate 5.5 Iterating Through Distinct Elements 5.6 Using a Bag 5.7 Using a Buffer 5.8 Creating a Priority Queue 5.9 Using a Blocking Buffer 5.10 Storing Multiple Values in a Map; 5.11 Retrieving a Key by a Value 5.12 Using a Case-Insensitive Map 5.13 Creating Typed Collections and Maps 5.14 Constraining Map Values 5.15 Constraining List Contents 5.16 Transforming Collections 5.17 Creating a Least Recently Used Cache 5.18 Using a Lazy Map 5.19 Counting Objects in a Collection 5.20 Performing Set Operations 5.21 Retrieving Map Values Without Casting 6. XML 6.1 Obtaining Jakarta Commons Digester 6.2 Turning XML Documents into Objects 6.3 Namespace-Aware Parsing; 6.4 Creating a Simple XML Command Language 6.5 Variable Substitution and XML Parsing 6.6 Obtaining Jakarta Commons Betwixt 6.7 Turning Beans into XML Documents 6.8 Customizing XML Generated from an Object 6.9 Turning XML Documents into Beans 7. Application Infrastructure 7.1 Obtaining Commons CLI; 7.2 Parsing a Simple Command Line 7.3 Parsing a Complex Command Line 7.4 Printing Usage Information 7.5 Obtaining Commons Configuration 7.6 Configuring Applications with Properties Files; 7.7 Configuring Applications with XML 7.8 Using Composite Configuration 7.9 Obtaining Commons Logging 7.10 Using an Abstract Logging Interface 7.11 Specifying a Logging Implementation 7.12 Obtaining Apache Log4J 7.13 Configuring Log4J with a Properties File 7.14 Configuring Log4J with XML; 8. Math 8.1 Using Fractions 8.2 Finding the Maximum and Minimum in an Array 8.3 Using Number Ranges 8.4 Generating Random Variables 8.5 Obtaining Commons Math 8.6 Calculating Simple Univariate Statistics 8.7 Solving a System of Linear Equations 8.8 Arithmetic with Complex Numbers 8.9 Establishing Relationships Between Variables 8.10 Estimating the Amount of Time Left in a Process 9. Templating 9.1 Obtaining Commons JEXL 9.2 Using an Expression Language 9.3 Invoking Methods in an Expression 9.4 Externalizing Logic with an Expression Language 9.5 Obtaining Jakarta Velocity 9.6 Using a Simple Templating Language 9.7 Writing Templates with Conditionals and Loops 9.8 Using Macros in a Templating Engine 9.9 Invoking Methods in a Template 9.10 Obtaining FreeMarker 9.11 Using a Complex Scripting Engine 9.12 Accessing XML Documents from a Templating Engine 9.13 Using Velocity in a Web Application; 9.14 Using FreeMarker in a Web Application 9.15 Writing Templates in Eclipse 10. I/O and Networking 10.1 Obtaining Commons IO; 10.2 Copying Streams, byte[ ], Readers, and Writers 10.3 Closing Streams, Readers, and Writers 10.4 Printing a Human-Readable File Size 10.5 Copying Files, Strings, and URLs 10.6 Deleting Directories Recursively 10.7 Obtaining the Size of a Directory; 10.8 Touching a File 10.9 Filtering Files 10.10 Measuring Stream Traffic 10.11 Splitting an OutputStream 10.12 Obtaining Jakarta ORO 10.13 Using Globs and Perl5 Regular Expressions to List Files 10.14 Obtaining Commons Net 10.15 Writing an FTP Client 10.16 Sending Mail with SMTP 10.17 Checking a POP3 Mailbox 11. HTTP and WebDAV 11.1 Obtaining Jakarta HttpClient; 11.2 Getting Jakarta HttpClient Source Code 11.3 Performing an HTTP GET 11.4 Sending Parameters in a Query String 11.5 Retrieving Content with a Conditional GET 11.6 Debugging HTTP Communications 11.7 Making an HTTP POST Request 11.8 Sending POST Data from a File 11.9 Uploading Files with a Multipart POST 11.10 Basic Authentication 11.11 NTLM Authentication; 11.12 Working with Cookies 11.13 Handling Redirects 11.14 SSL 11.15 Accepting a Self-Signed Certificate 11.16 Obtaining Jakarta Slide 11.17 Connecting to WebDAV Resources 11.18 Modifying a WebDAV Resource 12. Searching and Filtering; 12.1 Obtaining Commons JXPath 12.2 Querying an Object Graph with XPath 12.3 Search a Collection of Simple Objects 12.4 Applying XPath Queries to Complex Object Graphs 12.5 Obtaining Jakarta Lucene 12.6 Creating an Index of XML Documents; 12.7 Searching for a Specific Term in a Document Index 12.8 Finding the Frequency of Terms in an Index Index

About the Author :
Tim is a professional singer/programmer living and working in the Chicago area. He prefers Emacs to vi. Tim discovered programming on a TRS-80, and went on to study (and subsequently forget) Electrical Engineering at UVA. In his free time Tim likes to sleep, study music, build toys with microcontrollers, and participate in open source projects. Tim is active in the Jakarta Commons.


Best Sellers


Product Details
  • ISBN-13: 9780596007065
  • Publisher: O'Reilly Media
  • Publisher Imprint: O'Reilly Media
  • Height: 235 mm
  • No of Pages: 400
  • Returnable: 00
  • Spine Width: 32 mm
  • ISBN-10: 059600706X
  • Publisher Date: 21 Dec 2004
  • Binding: Paperback
  • Language: English
  • Returnable: N
  • Series Title: Cookbooks Ser.
  • Width: 178 mm


Add Photo
Add Photo

Customer Reviews

REVIEWS      0     
Click Here To Be The First to Review this Product
Jakarta Commons Cookbook: (Cookbooks Ser.)
O'Reilly Media -
Jakarta Commons Cookbook: (Cookbooks Ser.)
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Jakarta Commons Cookbook: (Cookbooks Ser.)

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!