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

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

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