java文件讀寫操作大全

http://blog.sina.com.cn/s/blog_4a9f789a0100ik3p.html

一.獲得控制檯用戶輸入的信息

     public String getInputMessage() throws IOException...{
         System.out.println("請輸入您的命令∶");
         byte buffer[]=new byte[1024];
         int count=System.in.read(buffer);
         char[] ch=new char[count-2];//最後兩位爲結束符,刪去不要
         for(int i=0;i<count-2;i++)
             ch[i]=(char)buffer[i];
         String str=new String(ch);
         return str;
     }
     可以返回用戶輸入的信息,不足之處在於不支持中文輸入,有待進一步改進。

     二.複製文件
     1.以文件流的方式複製文件

     public void copyFile(String src,String dest) throws IOException...{
         FileInputStream in=new FileInputStream(src);
         File file=new File(dest);
         if(!file.exists())
             file.createNewFile();
         FileOutputStream out=new FileOutputStream(file);
         int c;
         byte buffer[]=new byte[1024];
         while((c=in.read(buffer))!=-1)...{
             for(int i=0;i<c;i++)
                 out.write(buffer[i]);        
         }
         in.close();
         out.close();
     }
     該方法經過測試,支持中文處理,並且可以複製多種類型,比如txt,xml,jpg,doc等多種格式

     三.寫文件

     1.利用PrintStream寫文件


     public void PrintStreamDemo()...{
         try ...{
             FileOutputStream out=new FileOutputStream("D:/test.txt");
             PrintStream p=new PrintStream(out);
             for(int i=0;i<10;i++)
                 p.println("This is "+i+" line");
         } catch (FileNotFoundException e) ...{
             e.printStackTrace();
         }
     }
     2.利用StringBuffer寫文件
public void StringBufferDemo() throws IOException......{
         File file=new File("/root/sms.log");
         if(!file.exists())
             file.createNewFile();
         FileOutputStream out=new FileOutputStream(file,true);        
         for(int i=0;i<10000;i++)......{
             StringBuffer sb=new StringBuffer();
             sb.append("這是第"+i+"行:前面介紹的各種方法都不關用,爲什麼總是奇怪的問題 ");
             out.write(sb.toString().getBytes("utf-8"));
         }        
         out.close();
     }
     該方法可以設定使用何種編碼,有效解決中文問題。
四.文件重命名
    
     public void renameFile(String path,String oldname,String newname)...{
         if(!oldname.equals(newname))...{//新的文件名和以前文件名不同時,纔有必要進行重命名
             File oldfile=new File(path+"/"+oldname);
     

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章