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(BufferedReader input,
char[] customizedSeparators) |
CSVReader(InputStream input) |
CSVReader(InputStream input,
char customizedSeparator) |
CSVReader(InputStream input,
char[] customizedSeparators) |
CSVReader(InputStream input,
String enc) |
CSVReader(InputStream input,
String enc,
char customizedSeparator) |
CSVReader(InputStream input,
String enc,
char[] customizedSeparators) |
CSVReader(Reader input) |
CSVReader(Reader input,
char customizedSeparator) |
CSVReader(Reader input,
char[] customizedSeparators) |
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(Reader input, char[] customizedSeparators)
public CSVReader(InputStream input)
public CSVReader(InputStream input, char customizedSeparator) throws UnsupportedEncodingException
UnsupportedEncodingException
public CSVReader(InputStream input, char[] customizedSeparators) throws UnsupportedEncodingException
UnsupportedEncodingException
public CSVReader(InputStream input, String enc) throws UnsupportedEncodingException
UnsupportedEncodingException
public CSVReader(InputStream input, String enc, char customizedSeparator) throws UnsupportedEncodingException
UnsupportedEncodingException
public CSVReader(InputStream input, String enc, char[] customizedSeparators) throws UnsupportedEncodingException
UnsupportedEncodingException
public CSVReader(BufferedReader input)
public CSVReader(BufferedReader input, char customizedSeparator)
public CSVReader(BufferedReader input, char[] customizedSeparators)
public ArrayList<String> nextRecord() throws IOException
IOException
public int getMaxRowsInFile()
public void setMaxRowsInFile(int newMax)
public void setMaxCharsInFile(int newMax)
Copyright © 2016. All Rights Reserved.