在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中文網其他相關文章!