2014-10-08 78 views
0

在我的項目中,我正在打開文本文件,並且正在對文件進行一些更改,並且我希望在對文件進行鏈接後保存該文件,例如使用位置瀏覽另存爲。 我能以某種方式做到嗎?如何在更改後在java中保存文本文件?

感謝您的幫助!

+1

小谷歌應該幫助你。 – 2014-10-08 09:41:05

+0

是的,我試圖但我沒有找到我所需要的。 – Pachu 2014-10-08 09:43:38

+0

嘗試更多。 – 2014-10-08 09:44:56

回答

0

在互聯網上小的搜索會有所幫助。這裏是一個基本的程序,它將從一個文件讀取並寫入其他文件。您可以根據您的要求進行修改。

import java.io.*; 

public class CopyFile { 
    public static void main(String args[]) throws IOException 
    { 
     FileInputStream in = null; 
     FileOutputStream out = null; 

     try { 
     in = new FileInputStream("input.txt"); 
     out = new FileOutputStream("output.txt"); 

     int c; 
     while ((c = in.read()) != -1) { 
      out.write(c); 
     } 
     }finally { 
     if (in != null) { 
      in.close(); 
     } 
     if (out != null) { 
      out.close(); 
     } 
     } 
    } 
} 

一些更多的教程在這裏:

0

你應該提供一些代碼。但是,通過使用例如, FileWriter你只需打開你的文件FileWriter(File file, boolean append=true),並在完成時調用close()。可以說節省是自動的。

相關問題