在 Java 中将文件读入 ArrayList
在处理文本数据时,将其存储在数据结构中通常很有用,以方便使用操纵和处理。在 Java 中,ArrayList 是一种常用的集合,用于保存对象列表,包括字符串。本文演示如何将文件的内容读取到字符串的 ArrayList 中。
文件准备
首先,确保您有一个包含行分隔数据的文本文件,如提供的示例所示:
cat house dog ...
读取的 Java 代码文件
要将文件的内容读入字符串ArrayList,请使用以下代码:
import java.util.ArrayList; import java.util.Scanner; import java.io.File; public class FileToList { public static void main(String[] args) { try { // Create a Scanner object for the file Scanner s = new Scanner(new File("filepath")); // Create an ArrayList to store the words ArrayList<String> list = new ArrayList<>(); // Loop through the file and add each word to the ArrayList while (s.hasNext()) { list.add(s.next()); } // Close the Scanner s.close(); // Print the ArrayList to the console System.out.println(list); } catch (Exception e) { e.printStackTrace(); } } }
说明
逐行读取的替代方法
如果您更喜欢逐行而不是逐字读取文件,请将代码修改如下:
... // Loop through the file and add each line to the ArrayList while (s.hasNextLine()) { list.add(s.nextLine()); } ...
在这种情况下,s.hasNextLine() 检查是否存在新行,并且s.nextLine() 检索整行。
以上是Java中如何将文件读入ArrayList?的详细内容。更多信息请关注PHP中文网其他相关文章!