生活随笔
收集整理的這篇文章主要介紹了
字节流复制视频
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
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();}
}
?
總結
以上是生活随笔為你收集整理的字节流复制视频的全部內容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。