Mateusz Zakarczemny created CSV-135:
---------------------------------------

             Summary: Char escape doesn't work
                 Key: CSV-135
                 URL: https://issues.apache.org/jira/browse/CSV-135
             Project: Commons CSV
          Issue Type: Bug
          Components: Printer
    Affects Versions: 1.0
            Reporter: Mateusz Zakarczemny


Following code:
{code}
CSVFormat format = CSVFormat.DEFAULT
        .withRecordSeparator('\n')
        .withQuote('"')
        .withEscape('\\');

CSVPrinter printer = new CSVPrinter(System.out, format);
List<String> l = new LinkedList<String>();
l.add("\"");
l.add("\n");
l.add("\\");
printer.printRecord(l);
{code}
produces
{quote}
"""","
","\"
{quote}
instead of
{quote}
"\"","\n","\\"
{quote}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to