我正在尝试从我的java目录接收文件,收集文档中的所有单词,将所有单词放入TreeSet
,然后打印出整个TreeSet
个单词。当我尝试该程序时,从控制台中的TreeSet
打印出的所有内容都是
Input file:
trees.docx
[]
它只是以这些空括号结束。注意:在trees.docx文件中只有单词“trees and stuff”。这是我的代码:
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
import java.util.Set;
import java.util.TreeSet;
public class CountWords {
public static void main(String[] args) throws FileNotFoundException {
Scanner sc = new Scanner(System.in);
System.out.println("Input file: ");
String fileName = sc.next();
File inputFile = new File(fileName);
Scanner in = new Scanner(inputFile);
Set<String> words = new TreeSet<String>();
// only happens if there is a next string
while(in.hasNext()){
words.add(in.next()); //adds this string to the treeSet initialized above
}
System.out.println(words); // prints the treeSet
}
}
答案 0 :(得分:0)
Java无法读取docx文件。使用外部软件读取Microsoft文件或尝试其他文件类型,如.txt。