public class CsvReader
extends java.lang.Object
Constructor and Description |
---|
CsvReader()
Constructor.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String[] |
readCsvRow(java.io.InputStream in)
Returns the next row from a given input stream.
|
void |
setPrefixByte(byte byte0)
Provides a single byte to be read before the start of the
input stream on the next invocation of
readCsvRow(java.io.InputStream) . |
public void setPrefixByte(byte byte0)
readCsvRow(java.io.InputStream)
.
Once read, it will not be read again.byte0
- prefix bytepublic java.lang.String[] readCsvRow(java.io.InputStream in) throws java.io.IOException
in
- input streamjava.io.IOException