Parse a line of text as comma-separated values, returning each value as one entry in an array of String objects. Remove quotes from entries that begin and end with them, and convert 'escaped' quotes to actual quotes. @param line line of text to be parsed @return an array of the individual values for
(String line, BufferedReader reader)
| 749 | * @return an array of the individual values formerly separated by commas |
| 750 | */ |
| 751 | protected String[] splitLineCSV(String line, BufferedReader reader) throws IOException { |
| 752 | if (csl == null) { |
| 753 | csl = new CommaSeparatedLine(); |
| 754 | } |
| 755 | return csl.handle(line, reader); |
| 756 | } |
| 757 | |
| 758 | |
| 759 | /** |
no test coverage detected