Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 5487 invoked from network); 18 Sep 2005 23:14:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 18 Sep 2005 23:14:29 -0000 Received: (qmail 2467 invoked by uid 500); 18 Sep 2005 23:14:28 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 1915 invoked by uid 500); 18 Sep 2005 23:14:26 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 1902 invoked by uid 500); 18 Sep 2005 23:14:26 -0000 Received: (qmail 1899 invoked by uid 99); 18 Sep 2005 23:14:26 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 18 Sep 2005 16:14:25 -0700 Received: (qmail 5415 invoked by uid 65534); 18 Sep 2005 23:14:24 -0000 Message-ID: <20050918231424.5414.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r290001 - in /jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io: filefilter/package.html input/package.html output/package.html package.html Date: Sun, 18 Sep 2005 23:14:23 -0000 To: commons-cvs@jakarta.apache.org From: scolebourne@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: scolebourne Date: Sun Sep 18 16:14:17 2005 New Revision: 290001 URL: http://svn.apache.org/viewcvs?rev=290001&view=rev Log: Rework package javadoc for v1.1 Modified: jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/package.html jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/input/package.html jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/output/package.html jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/package.html Modified: jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/package.html URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/package.html?rev=290001&r1=290000&r2=290001&view=diff ============================================================================== --- jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/package.html (original) +++ jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/package.html Sun Sep 18 16:14:17 2005 @@ -1,5 +1,21 @@ + + - +

This package defines an interface (IOFileFilter) that combines both {@link java.io.FileFilter} and {@link java.io.FilenameFilter}. Besides that the package offers a series of ready-to-use implementations of the @@ -24,11 +40,14 @@ SuffixFileFilter Filter based on a suffix - + NameFileFilter Filter based on a filename - + + WildcardFileFilter + Filter based on wildcards + @@ -87,7 +106,7 @@

This package also contains a utility class: FileFilterUtils. It allows you to use all -file filters without having to put the in the import section. Here's how the +file filters without having to put them in the import section. Here's how the above example will look using FileFilterUtils:

   File dir = new File(".");

Modified: jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/input/package.html
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/input/package.html?rev=290001&r1=290000&r2=290001&view=diff
==============================================================================
--- jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/input/package.html (original)
+++ jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/input/package.html Sun Sep 18 16:14:17 2005
@@ -1,8 +1,24 @@
+
+
 
-    
-        Implementations of input classes, such as
-        InputStream and
-        Reader.
-    
+
+

+This package provides implementations of input classes, such as +InputStream and Reader. +

+ - Modified: jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/output/package.html URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/output/package.html?rev=290001&r1=290000&r2=290001&view=diff ============================================================================== --- jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/output/package.html (original) +++ jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/output/package.html Sun Sep 18 16:14:17 2005 @@ -1,8 +1,24 @@ + + - - Implementations of output classes, such as - OutputStream and - Writer. - + +

+This package provides implementations of output classes, such as +OutputStream and Writer. +

+ - Modified: jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/package.html URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/package.html?rev=290001&r1=290000&r2=290001&view=diff ============================================================================== --- jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/package.html (original) +++ jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/package.html Sun Sep 18 16:14:17 2005 @@ -1,110 +1,46 @@ - - - Package Documentation for org.apache.avalon.excalibur.io Package - - - Utility code for IO operations.
-NOTE: Some classes are not yet included -in this description
-
- - - -

Introduction

- -

The org.apache.commons.io package contains utility code for -file- and stream-based IO operation. -

+ + + +

+This package defines utility classes for working with streams, readers, +writers and files. The most commonly used classes are described here: +

+

+IOUtils is the most frequently used class. +It provides operations to read, write, copy and close streams. +

+

+FileUtils provides operations based around the JDK File class. +These include reading, writing, copying, comparing and deleting. +

+

+FilenameUtils provides utilities based on filenames. +This utility class manipulates filenames without using File objects. +It aims to simplify the transition between Windows and Unix. +Before using this class however, you should consider whether you should +be using File objects. +

+

+FileSystemUtils allows access to the filing system in ways the JDK +does not support. At present this allows you to get the free space on a drive. +

+

+EndianUtils swaps data between Big-Endian and Little-Endian formats. +

--------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org