org.geotools.io |
package org.geotools.io
Extensions to standard {@link java.io.Reader} and {@link java.io.Writer}.
Classes provided in this package are filters for expanding the tab character
('\t' ). Replaces various EOL characters with the
platform-dependent one, etc.
|
Java Source File Name | Type | Comment |
ContentFormatException.java | Class | Throws when a stream can't be parsed because some content use an invalid format. |
DefaultFileFilter.java | Class | A
FileFilter implementation using Unix-style wildcards. |
EchoWriter.java | Class | A writer that copy all output to an other stream. |
ExpandedTabWriter.java | Class | Writes characters to a stream while expanding
tabs ('\t' ) into spaces. |
IndentedLineWriter.java | Class | A writer that put some spaces in front of every line. |
LineFormat.java | Class | Parses a line of text data. |
LineWriter.java | Class | Write characters to a stream while replacing various EOL by a unique string.
This class catch all occurrences of "\r" , "\n" and
"\r\n" , and replace them by the platform depend EOL string
("\r\n" on Windows, "\n" on Unix), or any other EOL
explicitly set at construction time. |
NumberedLineWriter.java | Class | A writer that put line number in front of every line. |
TableWriter.java | Class | A character stream that can be used to format tables. |