我正在尝试计算具有以下格式的文本文件中的字数:
TITEL####URL####ABSTRACT\n
TITEL####URL####ABSTRACT\n
TITEL####URL####ABSTRACT\n
像这样:
Available line####http://en.wikipedia.org/wiki/Available_line####In voice,
Marwan al-Shehhi####http://en.wikipedia.org/wiki/Marwan_al-Shehhi####Marwan etc.
Theodore Beza####http://en.wikipedia.org/wiki/Theodore_Beza####Theodore Beza etc.
我计算单词的代码如下所示:
public static int countTotalWords() {
totalWords = 0;
try {
FileInputStream fis;
fis = new FileInputStream(fileName);
Scanner scan = new Scanner(fis);
while (scan.hasNext()) {
totalWords++;
scan.next();
}
} catch (FileNotFoundException ex) {
Logger.getLogger(Opgave1.class.getName()).log(Level.SEVERE, null, ex);
}
return totalWords;
}
我假设它有效...
我只想计算摘要中的单词,因此忽略标题和 URL。我猜#### 可以用来跳过每一行的第一部分,但对于我的生活,我无法弄清楚如何。任何帮助表示赞赏!