public class CSVReader extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
CSVReader.CSVParseException |
| Constructor and Description |
|---|
CSVReader(BufferedReader input) |
CSVReader(BufferedReader input,
char customizedSeparator) |
CSVReader(InputStream input) |
CSVReader(InputStream input,
String enc) |
CSVReader(InputStream input,
String enc,
char customizedSeparator) |
CSVReader(Reader input) |
CSVReader(Reader input,
char customizedSeparator) |
| Modifier and Type | Method and Description |
|---|---|
int |
getMaxRowsInFile() |
ArrayList<String> |
nextRecord() |
void |
setMaxCharsInFile(int newMax) |
void |
setMaxRowsInFile(int newMax) |
public CSVReader(Reader input)
public CSVReader(Reader input, char customizedSeparator)
public CSVReader(InputStream input)
public CSVReader(InputStream input, String enc) throws UnsupportedEncodingException
UnsupportedEncodingExceptionpublic CSVReader(InputStream input, String enc, char customizedSeparator) throws UnsupportedEncodingException
UnsupportedEncodingExceptionpublic CSVReader(BufferedReader input)
public CSVReader(BufferedReader input, char customizedSeparator)
public ArrayList<String> nextRecord() throws IOException
IOExceptionpublic int getMaxRowsInFile()
public void setMaxRowsInFile(int newMax)
public void setMaxCharsInFile(int newMax)
Copyright © 2014. All Rights Reserved.