ReaderSource
InputStreamSource
This class may be passed a charset on construction, or alternatively it will use the platform default charset when converting bytes to chars.
58596061626364656667
* @param tableName The name to give to this table. * @param inputStreamSource The resource to obtain data from. */ public CsvTable(CsvParser csvParser, String tableName, InputStreamSource inputStreamSource) { new CsvReader(csvParser).readLines( new InputStreamReaderSource(inputStreamSource), new HeaderCallback(tableName), new DataCallback() ); }