Uses of Class
org.apache.commons.csv.CSVParser
-
-
Uses of CSVParser in org.apache.commons.csv
Methods in org.apache.commons.csv that return CSVParser Modifier and Type Method Description CSVParser
CSVRecord. getParser()
Returns the parser.CSVParser
CSVFormat. parse(Reader reader)
Parses the specified content.static CSVParser
CSVParser. parse(File file, Charset charset, CSVFormat format)
Creates a parser for the givenFile
.static CSVParser
CSVParser. parse(InputStream inputStream, Charset charset, CSVFormat format)
Creates a CSV parser using the givenCSVFormat
.static CSVParser
CSVParser. parse(Reader reader, CSVFormat format)
Creates a CSV parser using the givenCSVFormat
static CSVParser
CSVParser. parse(String string, CSVFormat format)
Creates a parser for the givenString
.static CSVParser
CSVParser. parse(URL url, Charset charset, CSVFormat format)
Creates and returns a parser for the given URL, which the caller MUST close.static CSVParser
CSVParser. parse(Path path, Charset charset, CSVFormat format)
Creates and returns a parser for the givenPath
, which the caller MUST close.
-