java 操作txt文件
生活随笔
收集整理的這篇文章主要介紹了
java 操作txt文件
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
有勇氣的牛排
官方地址: https://www.920vip.net/
按行讀取
public static void readFile(){String pathname = "E:/project/java/idea項目/java學習/test.txt";String line;try{FileReader reader = new FileReader(pathname);BufferedReader br = new BufferedReader(reader);while ((line=br.readLine())!=null){System.out.println(line);}} catch (IOException e){e.printStackTrace();} }寫入文件
public static void writeFile(){try{String pathname = "E:/project/java/idea項目/java學習/test.txt";File writeName = new File(pathname);FileWriter writer = new FileWriter(writeName);BufferedWriter out = new BufferedWriter(writer);out.write("666");out.write("1\r2\n3");out.flush(); // 把緩存區(qū)內(nèi)容壓入文件} catch (IOException e){e.printStackTrace();} }文件內(nèi)容:
總結(jié)
以上是生活随笔為你收集整理的java 操作txt文件的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 2. JSF---托管Bean
- 下一篇: hadoop程序开发--- Java