日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

java IO(输入输出) 字节缓冲流

發布時間:2025/3/16 编程问答 20 豆豆
生活随笔 收集整理的這篇文章主要介紹了 java IO(输入输出) 字节缓冲流 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
//文件復制 package zhi_jie_liu;import java.io.*;public class Example04 {public static void main(String[] args) throws Exception {// TODO Auto-generated method stubInputStream in=new FileInputStream("C:/Users/Administrator/Desktop/數字圖像處理5.ppt");OutputStream out=new FileOutputStream("C:\\Users\\Administrator\\Desktop\\小明\\a.ppt"); int len;long begintime=System.currentTimeMillis();while((len=in.read())!=-1){out.write(len);}long endtime=System.currentTimeMillis();System.out.println("拷貝消耗的時間為:"+(endtime-begintime));in.close();out.close();}}

package zhi_jie_liu;import java.io.*;public class Example05 {public static void main(String[] args) throws Exception {// TODO Auto-generated method stubInputStream in=new FileInputStream("C:/Users/Administrator/Desktop/數字圖像處理5.ppt");OutputStream out=new FileOutputStream("C:\\Users\\Administrator\\Desktop\\小明\\a.ppt"); int len;//記錄讀取讀入緩沖區的字節數byte[] buff=new byte[1024];//定義一個字節數組作為緩沖區long begintime=System.currentTimeMillis();while((len=in.read(buff))!=-1){out.write(buff,0,len);//從第一個字節開始向文件中寫入len個字節}long endtime=System.currentTimeMillis();System.out.println("拷貝消耗的時間為:"+(endtime-begintime));in.close();out.close();}}
//緩沖流package zhi_jie_liu;import java.io.*;public class Example07 {public static void main(String[] args) throws Exception {// TODO Auto-generated method stub//包裝類,將FileInputStream對象作為參數傳入,創建一個帶緩沖的輸入流BufferedInputStream bis=new BufferedInputStream(new FileInputStream("C:/Users/Administrator/Desktop/數字圖像處理5.ppt"));BufferedOutputStream bos=new BufferedOutputStream(new FileOutputStream("C:\\Users\\Administrator\\Desktop\\a.ppt") );int len;while ((len=bis.read())!=-1) {bos.write(len);}bis.close();bos.close();}}

總結

以上是生活随笔為你收集整理的java IO(输入输出) 字节缓冲流的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。