Featured image of post Java常用方法 將檔案讀成String

Java常用方法 將檔案讀成String

這個方法太常用了,紀錄一下,以後要用直接來call就好

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
 public static String readFileAsString(File file) {
        StringBuilder content = new StringBuilder();

        try (BufferedReader br = new BufferedReader(new FileReader(file))) {
            String line;
            while ((line = br.readLine()) != null) {
                content.append(line).append("\n");
            }
        } catch (IOException e) {
            e.printStackTrace(); // 可以根據需要進行錯誤處理
        }

        return content.toString();
    }
Licensed under CC BY-NC-SA 4.0