轉載 java文件寫入耗時

          轉載地址:http://zhenqinghualy.blog.163.com/blog/static/5498053520100123332267/ 
          原創地址不詳 

          從老紫竹的網站上轉來滴 


          import java.io.BufferedOutputStream;   
          import java.io.File;   
          import java.io.FileOutputStream;   
          import java.io.FileWriter;   
          import java.nio.ByteBuffer;   
          import java.nio.channels.FileChannel;   
            
          /**  
          * 測試各種寫文件的方法性能。  
          *   
          * @author 老紫竹 JAVA世紀網(java2000.net)  
          *   
          */  
          public class T {   
            
            public static void main(String[] args) {   
              FileOutputStream out = null;   
              FileOutputStream outSTr = null;   
              BufferedOutputStream Buff = null;   
              FileWriter fw = null;   
              int count = 1000000;// 寫文件行數   
              try {   
                byte[] bs = "測試java 文件操作\r\n".getBytes();   
                out = new FileOutputStream(new File("C:/add.txt"));   
                long begin = System.currentTimeMillis();   
                for (int i = 0; i < count; i++) {   
                  out.write(bs);   
                }   
                out.close();   
                long end = System.currentTimeMillis();   
                System.out.println("FileOutputStream執行耗時:" + (end - begin) + " 豪秒");   
            
                outSTr = new FileOutputStream(new File("C:/add0.txt"));   
                Buff = new BufferedOutputStream(outSTr);   
                long begin0 = System.currentTimeMillis();   
                for (int i = 0; i < count; i++) {   
                  Buff.write(bs);   
                }   
                Buff.flush();   
                Buff.close();   
                long end0 = System.currentTimeMillis();   
                System.out.println("BufferedOutputStream執行耗時:" + (end0 - begin0) + " 豪秒");   
            
                fw = new FileWriter("C:/add2.txt");   
                long begin3 = System.currentTimeMillis();   
                for (int i = 0; i < count; i++) {   
                  fw.write("測試java 文件操作\r\n");   
                }   
                fw.flush();   
                fw.close();   
                long end3 = System.currentTimeMillis();   
                System.out.println("FileWriter執行耗時:" + (end3 - begin3) + " 豪秒");   
            
                long begin4 = System.currentTimeMillis();   
                String path = "C:/add3.txt";   
                ByteBuffer bb = ByteBuffer.wrap(bs);   
                FileChannel out2 = new FileOutputStream(path).getChannel();   
                for (int i = 0; i < count; i++) {   
                  out2.write(bb);   
                  bb.rewind();   
                }   
            
                out2.close();   
                long end4 = System.currentTimeMillis();   
                System.out.println("FileChannel執行耗時:" + (end4 - begin4) + " 豪秒");   
              } catch (Exception e) {   
                e.printStackTrace();   
              } finally {   
                try {   
                  fw.close();   
                  Buff.close();   
                  outSTr.close();   
                  out.close();   
                } catch (Exception e) {   
                  e.printStackTrace();   
                }   
              }   
            }   
          }  

          在我的筆記本上,運行結果如下 

          FileOutputStream執行耗時:4891 豪秒 

          BufferedOutputStream執行耗時:78 豪秒 

          FileWriter執行耗時:438 豪秒 

          FileChannel執行耗時:2812 豪秒 

          當然最終生成的文件都是正確的 

          總結: 

          BufferedOutputStream 由于有緩沖,性能明顯好 

          FileOutputStream 性能最差,因為其每次都寫入字節。 

          FileWriter 性能很一般 

          FileChannel使用了nio,但如果沒有緩沖,必能太指望性能了 

          posted on 2013-12-25 14:24 葉落心成 閱讀(478) 評論(0)  編輯  收藏


          只有注冊用戶登錄后才能發表評論。


          網站導航:
           
          <2013年12月>
          24252627282930
          1234567
          891011121314
          15161718192021
          22232425262728
          2930311234

          導航

          統計

          常用鏈接

          留言簿

          隨筆檔案

          文章檔案

          搜索

          最新評論

          閱讀排行榜

          評論排行榜

          主站蜘蛛池模板: 湘阴县| 平舆县| 贡嘎县| 阳西县| 枝江市| 赤壁市| 绥棱县| 庄河市| 江阴市| 陈巴尔虎旗| 中牟县| 安国市| 伊金霍洛旗| 合作市| 澄江县| 偏关县| 工布江达县| 福州市| 中卫市| 枞阳县| 蒙自县| 金坛市| 苍溪县| 城步| 原阳县| 平武县| 湾仔区| 白城市| 于都县| 贵港市| 乌什县| 康马县| 广河县| 纳雍县| 龙里县| 汝阳县| 灌南县| 天祝| 楚雄市| 潮安县| 青阳县|