gpt4 book ai didi

java - 将短语与全文进行比较

转载 作者:行者123 更新时间:2023-12-01 11:42:18 25 4
gpt4 key购买 nike

我有两个文本文件。第一个用户输入一段文本。第二个是从 owl 文件中获取的术语词典。就像这样:

Inferior salivatory nucleus
Retrosplenial area
lateral agranular part

我已经对这些位进行了编码来制作这些文件。我被困在比较文件中,以便字典中出现的任何整个短语和文本段落都在 Java 的命令行中打印出来。

最佳答案

尝试下面的代码,它会对你有帮助。更正 fileName 中的文件路径,然后在 while 循环中输入搜索条件:

public class JavaReadFile {
public static void main(String[] args) throws IOException {
String fileName = "filePath.txt";

//read using BufferedReader, to read line by line
readUsingBufferedReader(fileName);
}

private static void readUsingBufferedReader(String fileName) throws IOException {
File file = new File(fileName);
FileReader fr = new FileReader(file);
BufferedReader br = new BufferedReader(fr);
String line;
while((line = br.readLine()) != null){
//process the line
System.out.println(line);
}
//close resources
br.close();
fr.close();
}
}

关于java - 将短语与全文进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29429877/

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