|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.example.YaleLineReader
public class YaleLineReader
A simple line converter for reading data from BufferedReaders. Each line is separated into columns using a pattern matcher based on regular expressions. In addition, comments might be also defined. Everything after a comment character is completely ignored. Quotes might also be used. If a columns starts with a quote (") the end of the quoted region is searched and the corresponding columns build a new column which replaces the old ones. Quoting is added for compatibility reasons only. Since parsing is slower if quoting is used, quotes should not be used at all. If possible please use and define a column separator which is not part of your data.
Field Summary | |
---|---|
private java.lang.String[] |
commentChars
The possible character for comment lines. |
private char |
decimalPointCharacter
Decimal point character |
private int |
lineNumber
The current line number. |
private java.util.regex.Pattern |
separatorPattern
A regular expression pattern which is used for splitting the columns. |
private boolean |
useQuotes
Indicates if quotes should be regarded (slower!). |
Constructor Summary | |
---|---|
YaleLineReader(java.lang.String separatorsRegExpr,
char[] commentChars,
boolean useQuotes)
Indicates if quoting (") can be used to form. |
|
YaleLineReader(java.lang.String separatorsRegExpr,
char[] commentChars,
boolean useQuotes,
char decimalPointCharacter)
Indicates if quoting (") can be used to form. |
Method Summary | |
---|---|
private java.lang.String[] |
quote(java.lang.String[] columns)
|
java.lang.String[] |
readLine(java.io.BufferedReader in,
int expectedNumberOfColumns)
Ignores comment and empty lines and returns the first line not starting with a comment. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private java.util.regex.Pattern separatorPattern
private java.lang.String[] commentChars
private boolean useQuotes
private char decimalPointCharacter
private int lineNumber
Constructor Detail |
---|
public YaleLineReader(java.lang.String separatorsRegExpr, char[] commentChars, boolean useQuotes, char decimalPointCharacter)
public YaleLineReader(java.lang.String separatorsRegExpr, char[] commentChars, boolean useQuotes)
Method Detail |
---|
public java.lang.String[] readLine(java.io.BufferedReader in, int expectedNumberOfColumns) throws java.io.IOException
java.io.IOException
private java.lang.String[] quote(java.lang.String[] columns) throws java.io.IOException
java.io.IOException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |