gpt4 book ai didi

java - 如何将文件的内容添加到数组列表中

转载 作者:行者123 更新时间:2023-12-02 10:15:24 25 4
gpt4 key购买 nike

我已经使用 BufferedReader 从文件中读取内容,但现在我想将文件的内容存储到一个数组列表中,其中我的文件包含 pdf 中的一些文本,所以现在我想将所有这些内容添加到数组列表

在这里我创建了数组列表,但现在我不知道如何继续下一步,然后从 while 循环中读取,所以请帮助我

        ArrayList<String>YourList=new ArrayList<String>();
FileReader fr = new
FileReader("D:\\PDFTOEXCEL\\Extractionfrompdf.txt");
BufferedReader br = new BufferedReader(fr);

String s;

String keyword = arra.get(6);

while ((s = br.readLine()) != null) {
if (s.contains(keyword)) {
s = s.replaceAll(keyword, " ");
System.out.println(s);
}
}

最佳答案

如果你可以使用java8,有Files.lines方法:

String keyword = arra.get(6);
List<String> list = Files.lines(Paths.get(PATH_TO_FILE)) // returns stream of lines from source file
.filter(s -> s.contains(keyword)) // filter by keyword
.collect(Collectors.toList()); // add filtered lines to list

列表将包含源文件中具有关键字的所有行

关于java - 如何将文件的内容添加到数组列表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54721328/

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