以下是样本数据集。这里的问题是分隔符是::
,但在电影名称之间有:
,所以我遇到了问题。
请帮帮我。
答案 0 :(得分:0)
Scanner scan = new Scanner(file);
while (scan.hasNextLine()) {
String[] a = scan.nextLine().replace("\\t", ",").split(",");
//do something with the array
}
scan.close();
这样做了:
谢谢!
答案 1 :(得分:0)
您可以尝试执行以下操作:
<dependency>
<groupId>io.datafx</groupId>
<artifactId>flow</artifactId>
<version>8.0</version>
</dependency>
第一行使用::作为分隔符读取您的文件(“file.txt”应替换为您的文件名)。第二行将包含所有分类的1列拆分为3个单独的列。