讀取每一行檔案資料的方法bufferedreader

瓜瓜東西發表於2014-05-28
File file = new File(PublicProperty.abstractDiskPath, "a.txt");


        System.out.println(file + "" + file.isFile());
        try {
            BufferedReader reader = new BufferedReader(new FileReader(file));
            String string = null;
            do {
                string = reader.readLine();
                System.out.println(string);
            } while (string != null);


        } catch (IOException e) {
            e.printStackTrace();
        }

相關文章