Pruteanu Dragos created CSV-289:
-----------------------------------
Summary: Memory usage
Key: CSV-289
URL: https://issues.apache.org/jira/browse/CSV-289
Project: Commons CSV
Issue Type: Improvement
Reporter: Pruteanu Dragos
I intend to use the CSV parser to parse text lines from a file, separate ( not
in a row ). This is intended for an editor for large CSV files, where only the
visible lines are parsed.
Is it possible to somehow parse only a line of text, without initializing the
parser each time? I ask this in order to reduce the number of created objects
in Java.
Like for example
```
CSVParser parser = new CSVParser();
parser.parse(line1);
parser.reset();
parser.parse(line2);
``
--
This message was sent by Atlassian Jira
(v8.3.4#803005)