1111 < a name ="doc.Description "> </ a >
1212< div align ="center "> < a href ="#doc.Intro "> [Introduction]</ a >
1313< a href ="#doc.FilenameFilters "> [FilenameFilters]</ a > < a
14- href ="#doc.IOUtil "> [IO Utilities]</ a > < a href ="#doc.FileUtil "> [File
14+ href ="#doc.IOUtils "> [IO Utilities]</ a > < a href ="#doc.FileUtil "> [File
1515Utilities]</ a > < a href ="#doc.Endian "> [Endian Utilities]</ a > </ div >
1616 < a name ="doc.Intro "> </ a >
1717< h2 > Introduction</ h2 >
@@ -31,10 +31,10 @@ <h2>FilenameFilters</h2>
3131for example.</ p >
3232
3333
34- < a name ="doc.IOUtil "> </ a >
35- < h2 > The < a href ="IOUtil .html "> org.apache.commons.io.IOUtil </ a > class</ h2 >
34+ < a name ="doc.IOUtils "> </ a >
35+ < h2 > The < a href ="IOUtils .html "> org.apache.commons.io.IOUtils </ a > class</ h2 >
3636
37- < p > The < a href ="IOUtil .html "> IOUtil </ a > class contains a comprehensive
37+ < p > The < a href ="IOUtils .html "> IOUtils </ a > class contains a comprehensive
3838set of static methods for copying from: </ p >
3939< ul >
4040 < li > < code > String</ code > </ li >
@@ -72,10 +72,10 @@ <h2>The <a href="IOUtil.html">org.apache.commons.io.IOUtil</a> class</h2>
7272}
7373 </ pre >
7474
75- < p > With the IOUtil class, that could be done with:</ p >
75+ < p > With the IOUtils class, that could be done with:</ p >
7676
77- < pre > import java.net.URL;< br > import java.io.*;< br > import org.apache.commons.io.IOUtil ;< br > < br > public class IOUtilCopy {< br > public static void main(String args[]) throws IOException {< br > InputStream in = new URL( "http://jakarta.apache.org" ).openStream();< br > < font
78- color ="blue "> System.out.println( IOUtil .toString( in ) );</ font >
77+ < pre > import java.net.URL;< br > import java.io.*;< br > import org.apache.commons.io.IOUtils ;< br > < br > public class IOUtilsCopy {< br > public static void main(String args[]) throws IOException {< br > InputStream in = new URL( "http://jakarta.apache.org" ).openStream();< br > < font
78+ color ="blue "> System.out.println( IOUtils .toString( in ) );</ font >
7979 in.close();
8080 }
8181}
@@ -85,7 +85,7 @@ <h2>The <a href="IOUtil.html">org.apache.commons.io.IOUtil</a> class</h2>
8585class can save a great deal of time.</ p >
8686
8787< p > For utility code such as this, flexibility and speed are of primary importance.
88- In IOUtil , each kind of copy method has a variant which allows the buffer
88+ In IOUtils , each kind of copy method has a variant which allows the buffer
8989size to be set. For methods that convert bytes to chars, the encoding
9090method may also be set.</ p >
9191 < a name ="doc.FileUtil "> </ a >
0 commit comments