小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

Java追加文件內(nèi)容的三種方法

 橙zc 2014-08-12
  1. import java.io.BufferedWriter;  
  2. import java.io.File;  
  3. import java.io.FileOutputStream;  
  4. import java.io.FileWriter;  
  5. import java.io.IOException;  
  6. import java.io.OutputStreamWriter;  
  7. import java.io.RandomAccessFile;  
  8.   
  9. /** 
  10.  * 
  11.  * @author malik 
  12.  * @version 2011-3-10 下午10:49:41 
  13.  */  
  14. public class AppendFile {  
  15.       
  16.     public static void method1(String file, String conent) {     
  17.         BufferedWriter out = null;     
  18.         try {     
  19.             out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file, true)));     
  20.             out.write(conent);     
  21.         } catch (Exception e) {     
  22.             e.printStackTrace();     
  23.         } finally {     
  24.             try {     
  25.                 if(out != null){  
  26.                     out.close();     
  27.                 }  
  28.             } catch (IOException e) {     
  29.                 e.printStackTrace();     
  30.             }     
  31.         }     
  32.     }     
  33.     
  34.     /**   
  35.      * 追加文件:使用FileWriter   
  36.      *    
  37.      * @param fileName   
  38.      * @param content   
  39.      */    
  40.     public static void method2(String fileName, String content) {   
  41.         FileWriter writer = null;  
  42.         try {     
  43.             // 打開(kāi)一個(gè)寫(xiě)文件器,構(gòu)造函數(shù)中的第二個(gè)參數(shù)true表示以追加形式寫(xiě)文件     
  44.             writer = new FileWriter(fileName, true);     
  45.             writer.write(content);       
  46.         } catch (IOException e) {     
  47.             e.printStackTrace();     
  48.         } finally {     
  49.             try {     
  50.                 if(writer != null){  
  51.                     writer.close();     
  52.                 }  
  53.             } catch (IOException e) {     
  54.                 e.printStackTrace();     
  55.             }     
  56.         }   
  57.     }     
  58.     
  59.     /**   
  60.      * 追加文件:使用RandomAccessFile   
  61.      *    
  62.      * @param fileName 文件名   
  63.      * @param content 追加的內(nèi)容   
  64.      */    
  65.     public static void method3(String fileName, String content) {   
  66.         RandomAccessFile randomFile = null;  
  67.         try {     
  68.             // 打開(kāi)一個(gè)隨機(jī)訪問(wèn)文件流,按讀寫(xiě)方式     
  69.             randomFile = new RandomAccessFile(fileName, "rw");     
  70.             // 文件長(zhǎng)度,字節(jié)數(shù)     
  71.             long fileLength = randomFile.length();     
  72.             // 將寫(xiě)文件指針移到文件尾。     
  73.             randomFile.seek(fileLength);     
  74.             randomFile.writeBytes(content);      
  75.         } catch (IOException e) {     
  76.             e.printStackTrace();     
  77.         } finally{  
  78.             if(randomFile != null){  
  79.                 try {  
  80.                     randomFile.close();  
  81.                 } catch (IOException e) {  
  82.                     e.printStackTrace();  
  83.                 }  
  84.             }  
  85.         }  
  86.     }    
  87.   
  88.     public static void main(String[] args) {  
  89.         try{  
  90.             File file = new File("d://text.txt");  
  91.             if(file.createNewFile()){  
  92.                 System.out.println("Create file successed");  
  93.             }  
  94.             method1("d://text.txt", "123");  
  95.             method2("d://text.txt", "123");  
  96.             method3("d://text.txt", "123");  
  97.         }catch(Exception e){  
  98.             System.out.println(e);  
  99.         }  
  100.     }  
  101. }  

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買(mǎi)等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類(lèi)似文章 更多