java复制视频文件_java IO流中文件,图像,视频,拷贝总结

import java.awt.image.BufferedImageFilter;

import java.io.BufferedInputStream;

import java.io.BufferedOutputStream;

import java.io.BufferedReader;

import java.io.BufferedWriter;

import java.io.FileInputStream;

import java.io.FileNotFoundException;

import java.io.FileOutputStream;

import java.io.FileReader;

import java.io.FileWriter;

import java.io.IOException;/**

* 用四种流实现文件的拷贝

* @author Administrator

**/

public classCopyFileTest {public static voidmain(String[] args) {//TODO Auto-generated method stub

String srcPath="d:/test.txt";

String destPath="f:/aaaa.txt";

copyFile(srcPath,destPath);//字节流实现文件的拷贝

copyFile2(srcPath,destPath);//字节缓冲流实现文件的拷贝

copyFile3(srcPath,destPath);//字符流实现文件的拷贝

copyFile4(srcPath,destPath);//字符缓冲流实现文件的拷贝

}/**

* 用字节流实现文件的拷贝

* @param scrPath 源路径名

* @param destPath 目标路径名*/

private static voidcopyFile(String srcPath, String destPath) {//TODO Auto-generated method stub

try (FileInputStream fis = newFileInputStream(srcPath);

FileOutputStream fos= newFileOutputStream(destPath);){//新建一个字节数组

byte[] b=new byte[1024];//声明一个整型常量,用来记录数组的长度

intlen;//文件的拷贝

while((len=fis.read(b))!=-1){

fos.write(b,0,len);

}

System.out.println("拷贝文件成功");

}catch(Exception e) {//TODO Auto-generated catch block

e.printStackTrace();

}

}/**

* 字节缓冲流实现文件的拷贝

* @param scrPath 源路径名

* @param destPath 目标路径名*/

private static voidcopyFile2(String srcPath, String destPath) {//TODO Auto-generated method stub

try(BufferedInputStream bis = new BufferedInputStream(newFileInputStream(srcPath));

BufferedOutputStream bos= new BufferedOutputStream(newFileOutputStream(destPath));){//创建一个字节数组

byte[]b=new byte[1024];//int常量用来接收位置

intlen;//开始循环读取字节,写入文件

while((len=bis.read(b))!=-1){

bos.write(b,0,len);

}

System.out.println("文件拷贝成功");

}catch(Exception e) {//TODO Auto-generated catch block

e.printStackTrace();

}

}/**

* 字符流实现文件的拷贝

* @param scrPath 源路径名

* @param destPath 目标路径名*/

private static voidcopyFile3(String srcPath, String destPath) {//TODO Auto-generated method stub

try (FileReader fr = newFileReader(srcPath);

FileWriter fw= newFileWriter(destPath);){//创建一个字符数组

char[] ch=new char[1024];//声明一个变量

intlen;while((len=fr.read(ch))!=-1){

fw.write(ch,0,len);

}

System.out.println("拷贝文件成功");

}catch(Exception e) {//TODO Auto-generated catch block

e.printStackTrace();

}

}/**

* 字符缓冲流实现文件的拷贝

* @param srcPath 源路径名

* @param destPath 目标路径名*/

private static voidcopyFile4(String srcPath, String destPath) {//TODO Auto-generated method stub

try (BufferedReader br = new BufferedReader(newFileReader(srcPath));

BufferedWriter bw= new BufferedWriter(newFileWriter(destPath));){//字符缓冲是对文件一行读取

String temp; //临时变量记录文件读取的位置

while((temp=br.readLine())!=null){

bw.write(temp);

bw.newLine();//读取一行,并实现换行

}

System.out.println("文件拷贝成功");

}catch(IOException e) {//TODO Auto-generated catch block

e.printStackTrace();

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值