作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我有一个 txt 文件,其中包含整个字典。我如何使这段代码能够将仅 5 个字母的单词转换为新创建的 txt 文件?
import java.io.*;
public class wordwebster {
public static void main(String[] args) throws IOException {
int five = 0;
File directory = new File(".");
String webster = directory.getCanonicalPath() + File.separator+ "webster.txt";
String fiveLetterWords = directory.getCanonicalPath()+ File.separator +"fiveLetterWords.txt";
File fin = new File(webster);
FileInputStream file = new FileInputStream(fin);
BufferedReader input = new BufferedReader(new InputStreamReader(file));
FileWriter fileStream = new FileWriter(fiveLetterWords,true);
BufferedWriter output = new BufferedWriter(fileStream);
String line = null;
while ((line = input.readLine())!= null){
output.write(line);
output.newLine();
}
input.close();
output.close();
}
}
编辑:
按照要求,假设输入文件 (webster.txt) 包含以下单词
Sentence
Frequent
Hello
Send
Variety
False
我只需要提取五个字母的单词(Hello 和 False)并将其放入新文件 ( FiveLetterWords.txt) 中。
最佳答案
如果您只需要允许长度恰好为 5 的单词,您可以在写入文件之前添加一个 if 条件进行检查。将 while 循环修改为此,
while ((line = input.readLine()) != null) {
if (line.trim().length() == 5) {
output.write(line);
output.newLine();
}
}
希望这有帮助。如果您遇到任何问题,请告诉我。
关于java - 如何将 5 个字母的单词传输到新的文本文件中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53351297/
我是一名优秀的程序员,十分优秀!