Java examples for File Path IO:CSV File
CSV content parser.
//package com.java2s; import java.io.*; import java.util.ArrayList; import java.util.List; public class Main { private static final char DEFAULT_CSV_SEPARATOR = ';'; /**/*from w w w. j a v a 2 s . co m*/ * CSV content parser. Convert an InputStream with the CSV contents to a two-dimensional List * of Strings representing the rows and columns of the CSV. Each CSV record is expected to be * separated by the default CSV field separator, a comma. * * @param csvInput The InputStream with the CSV contents. * @return A two-dimensional List of Strings representing the rows and columns of the CSV. */ public static List<List<String>> parseCsv(InputStream csvInput) { return parseCsv(csvInput, DEFAULT_CSV_SEPARATOR); } /** * CSV content parser. Convert an InputStream with the CSV contents to a two-dimensional List * of Strings representing the rows and columns of the CSV. Each CSV record is expected to be * separated by the specified CSV field separator. * * @param csvInput The InputStream with the CSV contents. * @param csvSeparator The CSV field separator to be used. * @return A two-dimensional List of Strings representing the rows and columns of the CSV. */ public static List<List<String>> parseCsv(InputStream csvInput, char csvSeparator) { // Prepare. BufferedReader csvReader = null; List<List<String>> csvList = new ArrayList<List<String>>(); String csvRecord = null; // Process records. try { csvReader = new BufferedReader(new InputStreamReader(csvInput, "UTF-8")); while ((csvRecord = csvReader.readLine()) != null) { csvList.add(parseCsvRecord(csvRecord, csvSeparator)); } } catch (IOException e) { throw new RuntimeException("Reading CSV failed.", e); } finally { if (csvReader != null) try { csvReader.close(); } catch (IOException e) { e.printStackTrace(); } } return csvList; } /** * CSV record parser. Convert a CSV record to a List of Strings representing the fields of the * CSV record. The CSV record is expected to be separated by the specified CSV field separator. * * @param record The CSV record. * @param csvSeparator The CSV field separator to be used. * @return A List of Strings representing the fields of each CSV record. */ private static List<String> parseCsvRecord(String record, char csvSeparator) { // Prepare. boolean quoted = false; StringBuilder fieldBuilder = new StringBuilder(); List<String> fields = new ArrayList<String>(); // Process fields. for (int i = 0; i < record.length(); i++) { char c = record.charAt(i); fieldBuilder.append(c); if (c == '"') { quoted = !quoted; // Detect nested quotes. } if ((!quoted && c == csvSeparator) // The separator .. || i + 1 == record.length()) // .. or, the end of record. { String field = fieldBuilder.toString() // Obtain the field, .. .replaceAll(csvSeparator + "$", "") // .. trim ending separator, .. .replaceAll("^\"|\"$", "") // .. trim surrounding quotes, .. .replace("\"\"", "\""); // .. and un-escape quotes. fields.add(field.trim()); // Add field to List. fieldBuilder = new StringBuilder(); // Reset. } } return fields; } }