IO操作による既存ファイルのデータ再書き込み

899 ワード

/* 
*            
*                
* Copyright (c) 2011,               
* All rights reserved.   
*     :IO                                        
*       :                                  
*     :2011    10    03      
*     :x1.0            
   
*                 
*     :  
*     : 
*     :   
*           
*/

import java.io.*;

class FileWriterTest3 
{
	public static void main(String[] args) 
	{
		FileWriter fw = null;
		try
		{
			//    true  ,          。                。
			fw = new FileWriter("Test.txt", true);

			fw.write("\r
hijklmn"); } catch (IOException e) { System.out.println("catch:" + e.toString()); } finally { try { if(fw != null) fw.close(); } catch (IOException e) { System.out.println("catch:" + e.toString()); } } } }

実行前:
 
実行後: