首页 > 学院 > 开发设计 > 正文

IO流_字节流复制视频案例2

2019-11-10 17:59:59
字体:
来源:转载
供稿:网友
package cn.itcast_04;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;/* * 需求:把E://哥有老婆.mp4复制到当前项目目录下的copy.mp4中 *  * 数据源: * 		e://哥有老婆.mp4	--	读取数据	--	FileInputStream * 目的地: * 		copy.mp4		--	写出数据	--	FileOutputStream */public class CopyFileDemo2 {	public static void main(String[] args) throws IOException {		// 封装数据源		FileInputStream fis = new FileInputStream("e://哥有老婆.mp4");		// 封装目的地		FileOutputStream fos = new FileOutputStream("copy.mp4");		// 复制数据		byte[] bys = new byte[1024];		int len = 0;		while ((len = fis.read(bys)) != -1) {			fos.write(bys, 0, len);		}		// 释放资源		fos.close();		fis.close();	}}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表