| Modifier and Type | Method and Description |
|---|---|
static CSVParser |
CSVParser.parse(java.io.File file,
java.nio.charset.Charset charset,
CSVFormat format)
Creates a parser for the given
File. |
static CSVParser |
CSVParser.parse(java.io.InputStream inputStream,
java.nio.charset.Charset charset,
CSVFormat format)
Creates a CSV parser using the given
CSVFormat. |
static CSVParser |
CSVParser.parse(java.nio.file.Path path,
java.nio.charset.Charset charset,
CSVFormat format)
Creates a parser for the given
Path. |
CSVParser |
CSVFormat.parse(java.io.Reader in)
Parses the specified content.
|
static CSVParser |
CSVParser.parse(java.io.Reader reader,
CSVFormat format)
Creates a CSV parser using the given
CSVFormat |
static CSVParser |
CSVParser.parse(java.lang.String string,
CSVFormat format)
Creates a parser for the given
String. |
static CSVParser |
CSVParser.parse(java.net.URL url,
java.nio.charset.Charset charset,
CSVFormat format)
Creates a parser for the given URL.
|