提高写文件的性能的一个比较简单的方法

我把代码粘给大家,大家看测一下就知道下面两种方法种哪种方法的效率比较高:
  1. import java.io.FileNotFoundException;
  2. import java.io.FileOutputStream;
  3. import java.io.IOException;
  4. import java.nio.ByteBuffer;
  5. import java.nio.channels.FileChannel;
  6. public class IOTest {
  7.     /**
  8.      * @param args
  9.      */
  10.     public static void main(String[] args) {
  11.         long cc=System.currentTimeMillis();
  12.         for(int i=0;i<1000;i++){
  13.             test1();
  14.         }
  15.         cc=System.currentTimeMillis()-cc;
  16.         System.out.println("test1="+cc);
  17.         cc=System.currentTimeMillis();
  18.         for(int i=0;i<1000;i++){
  19.             test2();
  20.         }
  21.         cc=System.currentTimeMillis()-cc;
  22.         System.out.println("test2="+cc);
  23.     }
  24.     private static void test1()
  25.     {
  26.         String file="test1.txt";
  27.         String message="asdfaksdjfalskdfjalksdjflkasjdfkajsdfkljasdlkfjasdlkfjasdfjalksdjflasdjflasdjflasdfjlasdfjeqoiuiruqnakncaskn asjdfas ffjqwoerj";
  28.         FileOutputStream fos=null;
  29.         FileChannel fc=null;
  30.         try {
  31.             fos=new FileOutputStream(file,false);
  32.             fc=fos.getChannel();
  33.             byte [] src=message.getBytes("GBK");
  34.             fc.write(ByteBuffer.wrap(src));
  35.         } catch (FileNotFoundException e) {
  36.             e.printStackTrace();
  37.         } catch (IOException e) {
  38.             e.printStackTrace();
  39.         }
  40.         finally
  41.         {
  42.             try {
  43.                 if(null!=fos)
  44.                 fos.close();
  45.             } catch (IOException e) {
  46.                 e.printStackTrace();
  47.             }
  48.             try {
  49.                 if(null!=fc)
  50.                 fc.close();
  51.             } catch (IOException e) {
  52.                 e.printStackTrace();
  53.             }
  54.         }
  55.     }
  56.     private static void test2()
  57.     {
  58.         String file="test2.txt";
  59.         String message="asdfaksdjfalskdfjalksdjflkasjdfkajsdfkljasdlkfjasdlkfjasdfjalksdjflasdjflasdjflasdfjlasdfjeqoiuiruqnakncaskn asjdfas ffjqwoerj";
  60.         FileOutputStream fos=null;
  61.         try {
  62.             fos=new FileOutputStream(file,false);
  63.             byte [] src=message.getBytes("GBK");
  64.             fos.write(src);
  65.         } catch (FileNotFoundException e) {
  66.             e.printStackTrace();
  67.         } catch (IOException e) {
  68.             e.printStackTrace();
  69.         }
  70.         finally
  71.         {
  72.             try {
  73.                 if(null!=fos)
  74.                 fos.close();
  75.             } catch (IOException e) {
  76.                 e.printStackTrace();
  77.             }
  78.         }
  79.     }
  80. }

你可能感兴趣的:(java)