I prefer opencsv for CSV parsing in Java. That library also supports parsing of tab delimited files, here's how:
Just a quick gist:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import au.com.bytecode.opencsv.CSVReader; | |
public class LoadTest { | |
@Test | |
public void testLoad(String row) throws IOException, JobNotFoundException, InterruptedException { | |
CSVReader reader = new CSVReader(new FileReader("/Users/bone/Desktop/foo_data.tab"), '\t'); | |
String[] record; | |
while ((record = reader.readNext()) != null) { | |
for (String value : record) { | |
System.out.println(value); // Debug only | |
} | |
} | |
} | |
} |
No comments:
Post a Comment