黑马程序员技术交流社区

标题: I/O流 [打印本页]

作者: a13783559191    时间: 2015-6-18 10:28
标题: I/O流
怎么使用标准字节流复制较大的视频文件
作者: tinlen    时间: 2015-6-18 10:50
把byte[]数组长度设置大一些.
作者: a13783559191    时间: 2015-6-18 10:54
tinlen 发表于 2015-6-18 10:50
把byte[]数组长度设置大一些.

有没有代码,给发一份,谢谢
作者: 改变    时间: 2015-6-18 12:49
这个不怎么难的。
作者: 825176857    时间: 2015-6-18 13:08
  1. package com.vince.io;

  2. import java.io.File;
  3. import java.io.FileInputStream;
  4. import java.io.FileOutputStream;
  5. import java.io.InputStream;

  6. public class TestCopy {

  7.         /**
  8.          * @param args
  9.          */
  10.         public static void main(String[] args) {
  11.                 String newFile="D:\\java.rmvb";
  12.                 String oldFile="E:\\java.rmvb";
  13.                 Copy(newFile,oldFile);
  14.         }
  15.         public static void Copy(String newFile,String oldFile){
  16.                 try {
  17.                                 File of=new File(oldFile);
  18.                                 int len=0;
  19.                                 if(of.exists()){
  20.                                         InputStream fis=new FileInputStream(oldFile);;
  21.                                         FileOutputStream fos=new FileOutputStream(newFile);
  22.                                 byte[] buffer=new byte[10240]; //[color=Red]这里改变长度[/color]
  23.                                 while((len=fis.read(buffer))!=-1){
  24.                                         fos.write(buffer, 0, len);
  25.                                 }
  26.                                 System.out.println("success");
  27.                                 fis.close();
  28.                                 fos.close();
  29.                                 }
  30.                         } catch (Exception e) {
  31.                                 System.out.println("错误");
  32.                                 e.printStackTrace();
  33.                         }
  34.         }
  35. }
复制代码

作者: zzy891226    时间: 2015-6-18 13:08
不怎么难就发代码,坐等代码{:3_63:}




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2