读写各种CSV格式文件的 Java 库:Commons CSV
jopen
10年前
Commons CSV读写各种Comma Separated Value (CSV) 格式文件的 Java 库。
最常见的CSV格式预定义的CSVFormat类:
Reader in = new FileReader("path/to/file.csv"); Iterable<CSVRecord> records = CSVFormat.EXCEL.parse(in); for (CSVRecord record : records) { String lastName = record.get("Last Name"); String firstName = record.get("First Name"); }