我写了类似的阅读 tsv 文件
datarow.splite("\t");
但是如果 tsv 文件包含
"\t"
它显示 \t
意味着它将 \t
作为普通文本public class Tsv_read{
public static void main(String[] arg) throws Exception {
BufferedReader TSVFile =
new BufferedReader(new FileReader("users.tsv"));
String dataRow = TSVFile.readLine(); // Read first line.
while (dataRow != null){
String[] dataArray = dataRow.split("\t");
for (String item:dataArray) {
System.out.print(item + " ");
}
System.out.println(); // Print the data line.
dataRow = TSVFile.readLine(); // Read next line of data.
}
// Close the file once all data has been read.
TSVFile.close();
// End the printout with a blank line.
System.out.println();
} //main()
} // TSVRead
最佳答案
不要尝试手动解析 TSV,因为有一些极端情况,例如转义/非转义,更不用说大文件的性能/内存问题和缺乏灵活性(尤其是转换值、选择要读取的列和顺序) , 等等)。
尝试 uniVocity-parser's TSV parser 。这是一个简单的例子:
TsvParserSettings settings = new TsvParserSettings(); //you will find MANY options here
TsvParser parser = new TsvParser(settings);
// parses all rows in one go.
List<String[]> allRows = parser.parseAll(YOUR_INPUT_HERE);
披露:我是这个图书馆的作者。它是开源且免费的(Apache V2.0 许可)。
关于java - 如何从java中读取tsv文件并以表格格式显示,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26460248/