Return-Path: X-Original-To: apmail-commons-issues-archive@minotaur.apache.org Delivered-To: apmail-commons-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 88C10180C0 for ; Tue, 19 Jan 2016 18:53:40 +0000 (UTC) Received: (qmail 37066 invoked by uid 500); 19 Jan 2016 18:53:40 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 36965 invoked by uid 500); 19 Jan 2016 18:53:40 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 36942 invoked by uid 99); 19 Jan 2016 18:53:40 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Jan 2016 18:53:40 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id E6ADC2C1F5C for ; Tue, 19 Jan 2016 18:53:39 +0000 (UTC) Date: Tue, 19 Jan 2016 18:53:39 +0000 (UTC) From: "Gary Gregory (JIRA)" To: issues@commons.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CSV-135) Char escape doesn't work MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CSV-135?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15107188#comment-15107188 ] Gary Gregory commented on CSV-135: ---------------------------------- Hi Sebb, {quote} The fundamental problem here is that there is no single definition of what constitutes the CSV format. {quote} Hence the CSVFormat class and its many settings ;-) It sounds like we needs a CSVFormat.SYBASE constant then? What would that look like and what additional setting do we need to toggle escaping behavior if any? > 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 > Fix For: Patch Needed > > > Following code: > {code} > CSVFormat format = CSVFormat.DEFAULT > .withRecordSeparator('\n') > .withQuote('"') > .withEscape('\\'); > CSVPrinter printer = new CSVPrinter(System.out, format); > List l = new LinkedList(); > l.add("\""); > l.add("\n"); > l.add("\\"); > printer.printRecord(l); > {code} > produces > {code} > """"," > ","\" > {code} > instead of > {code} > "\"","\n","\\" > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)