java_IO流總結(jié)

java_IO流總結(jié)

ID:37711403

大?。?0.22 KB

頁數(shù):8頁

時間:2019-05-29

java_IO流總結(jié)_第1頁
java_IO流總結(jié)_第2頁
java_IO流總結(jié)_第3頁
java_IO流總結(jié)_第4頁
java_IO流總結(jié)_第5頁
資源描述:

《java_IO流總結(jié)》由會員上傳分享,免費在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫。

1、********************************第19天IO流*************************************************************基本內(nèi)容*****************************字符流:Reader常用子類:InputStreamReader->(繼承)FileReader,BufferedReaderWriter常用子類:OutputStreamWriter->(繼承)FileWriter,BufferedWriter字節(jié)流:OutputStream常用子類:File

2、OutputStream,DataOutputStream,ObjectOutputStream,BufferedOutputStream,ByteArrayOutputStreamInputStream常用子類:FileInputStream,DataInputStream,ObjectOutputStream,BufferedInputStream,ByteArrayInputStream打印流:PrintStream常用子對象:System.out,System.in,System.err===============================

3、===============================================================********************************字節(jié)流:OutputStream,InputStream********************************一、字節(jié)流:FileInputStream,FileInputStream//文件讀寫importjava.io.*;publicclassText1{publicstaticvoidmain(String[]args){FileInputStream

4、fis=null;FileInputStreamfos=null;try{fis=newFileInputStream("e:\temp\from.zip");fos=newFileOutputStream("e:\temp\to.zip");byte[]buffer=newbyte[1024];while(true){inttemp=fis.read(buffer,0,buffer.length);if(temp==-1){break;}fos.write(buffer,0,temp);}}catch(Exceptione){e.printSta

5、ckTrace();}finally{try{//捕獲io流關(guān)閉異常fis.close();fos.close();}catch(Exceptione2){}}}}二、字節(jié)緩沖流:BufferedInputStream,BufferedOutputStream--------------------------------------//文件讀寫publicclassText2{publicstaticvoidmain(String[]args){StringfileName="e:\老羅視頻Android01-09.zip";StringtoName=

6、"e:\temp\老羅視頻Android01-09.zip";FileInputStreamfis=null;FileOutputStreamfos=null;BufferedInputStreambis=null;BufferedOutputStreambos=null;try{fis=newFileInputStream(fileName);fos=newFileOutputStream(toName);bis=newBufferedInputStream(fis);bos=newBufferedOutputStream(fos);longtime

7、1=System.currentTimeMillis();//打印時間while(true){byte[]buffer=newbyte[1024];inttemp=bis.read(buffer,0,buffer.length);if(temp==-1){break;}bos.write(buffer,0,temp);}longtime2=System.currentTimeMillis();System.out.println((time2-time1)/60000);//求時間差}catch(IOExceptione){e.printStackTrac

8、e();}finally{try{bis.close();bos.

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動畫的文件,查看預(yù)覽時可能會顯示錯亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫負(fù)責(zé)整理代發(fā)布。如果您對本文檔版權(quán)有爭議請及時聯(lián)系客服。
3. 下載前請仔細(xì)閱讀文檔內(nèi)容,確認(rèn)文檔內(nèi)容符合您的需求后進行下載,若出現(xiàn)內(nèi)容與標(biāo)題不符可向本站投訴處理。
4. 下載文檔時可能由于網(wǎng)絡(luò)波動等原因無法下載或下載錯誤,付費完成后未能成功下載的用戶請聯(lián)系客服處理。