gpt4 book ai didi

java - 需要标记仅包含一行的文件

转载 作者:行者123 更新时间:2023-12-01 11:05:38 24 4
gpt4 key购买 nike

我需要打开一个文件test.txt这个文件只有一句话,但全部都在一行中。我的工作是将每个单词分开并显示所有拼写错误的单词。

我尝试过使用BufferReaderFileReader,但它只是打印出文件的名称。我希望它看到第一行并将所有单词放入一个数组中。如果有人能解释我到底应该如何使用 BufferReaderFileReader 那就太好了。

这是测试.txt:
The warst drought in the United States in neearly a century is expected to drive up the price of milk, beef and pork next yeer, the government said Wednesdaay, as consumers bear some of the bruntt of the sweltering heat that is drivng up the cost of feed corrn.
注意:这在编辑器中显示为一行。


这是我尝试过的:

FileReader fr = new FileReader("test.txt");
BufferReader br = new BufferReader(fr);
StringBuilder sb = new StringBuilder();
String s;
while((s = br.readLine()) != null){
sb.append(s);
sb.toString();
}

感谢您的帮助。

最佳答案

for (String line : Files.readAllLines(Paths.get("filepath.txt"))) {
// ...
}

Java: How to read a text file

关于java - 需要标记仅包含一行的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32982559/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com