[ 
https://issues.apache.org/jira/browse/CSV-41?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Benedikt Ritter closed CSV-41.
------------------------------


> CSV Parser loops inifinitely if last line starts with a comment char
> --------------------------------------------------------------------
>
>                 Key: CSV-41
>                 URL: https://issues.apache.org/jira/browse/CSV-41
>             Project: Commons CSV
>          Issue Type: Bug
>          Components: Parser
>            Reporter: Edgar Philipp
>             Fix For: 1.0
>
>
> Behaviour:
> Whenever the last non-empty line of the CSV file starts with a comment, the 
> CSVParser loops infinitely!
> Examplary CSV file:
> {code}
> some
> # comment OK
> line
> # comment OK
> value
> # problematic comment
> {code}
> Excerpt of Java code:
> {code:java}
>    private static final char COMMENT = '#';
>    private static final char QUOTE = '"';
>    private static final char SEPARATOR = ';';
>    CSVStrategy csvStrategy = new CSVStrategy(SEPARATOR, QUOTE, COMMENT);
>    CSVParser parser = new CSVParser(reader, csvStrategy);
>    String[] line = parser.getLine();
>    while (line != null) {
>       Log.debug("Line: " + line[0]);
>       // Do something
>       line = parser.getLine();
>    }
> {code}
> Used Maven Dependency:
> {code:xml}
>  <dependency>
>     <groupId>org.apache.solr</groupId>
>     <artifactId>solr-commons-csv</artifactId>
>     <version>1.4.0</version>
>  </dependency>
> {code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)

Reply via email to