java中檔案的讀取和寫入

來源:互聯網
上載者:User

標籤:

//首先要頂一個file檔案用來存放要讀取的檔案        File f=new File("c:/test/aa.txt");        //在執行個體化一個輸入資料流,並把檔案對象傳到裡面        FileInputStream inputStream=new FileInputStream(f);        //定義一個位元組數組,用來存放讀取的內容        byte [] b=new byte[(int)f.length()];        int len=0;        int temp=0;        while((temp=inputStream.read())!=-1){            b[len]=(byte)temp;            len++;        }        System.out.println(new String(b,0,len,"GBK"));        inputStream.close();

上面是檔案的讀取。在c盤下有個test檔案夾裡面有個aa.txt

最後列印內容為nishiwodexiaoyaxiaopingguo,zenmekanyekandougouhonghongdexiaolianwennuanwodexnwo

下面檔案寫入

OutputStream outputStream=new FileOutputStream(f);byte [] bf={‘k‘,‘u‘,‘i‘};outputStream.write(bf);outputStream.close();

 但按照這種寫入的方式有一個問題,他會吧之前檔案裡的內容覆蓋掉。因此這就要看自己的需求了,下面是不會覆蓋的代碼

如果你不想把檔案裡面的內容覆蓋,而是要在原文基礎上追加,只要在執行個體化outputStream時用下面的方式就行了

OutputStream outputStream=new FileOutputStream(f,true);

 

java中檔案的讀取和寫入

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.