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

歡迎訪問 生活随笔!

生活随笔

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

编程问答

字节流复制视频

發布時間:2024/4/13 编程问答 31 豆豆
生活随笔 收集整理的這篇文章主要介紹了 字节流复制视频 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
  • 案例需求

    把“E:\leon\字節流復制圖片.avi”復制到模塊目錄下的“字節流復制圖片.avi”

  • 實現步驟

    • 根據數據源創建字節輸入流對象

    • 根據目的地創建字節輸出流對象

    • 讀寫數據,復制視頻

    • 釋放資源

  • 代碼實現

public class CopyAviDemo {public static void main(String[] args) throws IOException {//記錄開始時間long startTime = System.currentTimeMillis();//復制視頻 // method1(); // method2(); // method3();method4();//記錄結束時間long endTime = System.currentTimeMillis();System.out.println("共耗時:" + (endTime - startTime) + "毫秒");}//字節緩沖流一次讀寫一個字節數組public static void method4() throws IOException {BufferedInputStream bis = new BufferedInputStream(new FileInputStream("E:\\leon\\字節流復制圖片.avi"));BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("myByteStream\\字節流復制圖片.avi"));byte[] bys = new byte[1024];int len;while ((len=bis.read(bys))!=-1) {bos.write(bys,0,len);}bos.close();bis.close();}//字節緩沖流一次讀寫一個字節public static void method3() throws IOException {BufferedInputStream bis = new BufferedInputStream(new FileInputStream("E:\\leon\\字節流復制圖片.avi"));BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("myByteStream\\字節流復制圖片.avi"));int by;while ((by=bis.read())!=-1) {bos.write(by);}bos.close();bis.close();}//基本字節流一次讀寫一個字節數組public static void method2() throws IOException {//E:\\leon\\字節流復制圖片.avi//模塊目錄下的 字節流復制圖片.aviFileInputStream fis = new FileInputStream("E:\\leon\\字節流復制圖片.avi");FileOutputStream fos = new FileOutputStream("myByteStream\\字節流復制圖片.avi");byte[] bys = new byte[1024];int len;while ((len=fis.read(bys))!=-1) {fos.write(bys,0,len);}fos.close();fis.close();}//基本字節流一次讀寫一個字節public static void method1() throws IOException {//E:\\leon\\字節流復制圖片.avi//模塊目錄下的 字節流復制圖片.aviFileInputStream fis = new FileInputStream("E:\\leon\\字節流復制圖片.avi");FileOutputStream fos = new FileOutputStream("myByteStream\\字節流復制圖片.avi");int by;while ((by=fis.read())!=-1) {fos.write(by);}fos.close();fis.close();} }

?

總結

以上是生活随笔為你收集整理的字节流复制视频的全部內容,希望文章能夠幫你解決所遇到的問題。

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