字节流--读取并复制图片

Posted czgxxwz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字节流--读取并复制图片相关的知识,希望对你有一定的参考价值。

/**
* 字节流--读取并复制图片
* @param targetPath
*/
public static void readImageAndCopy(String targetPath){
File file=new File("F:\CreateDemo\demo.jpg");
FileInputStream fileInputStream=null;
try{
//输入流-读取文件
fileInputStream=new FileInputStream(file);
BufferedInputStream bufferedInputStream=new BufferedInputStream(fileInputStream);

//输出流-写入文件
FileOutputStream fileOutputStream=new FileOutputStream(targetPath);
BufferedOutputStream bufferedOutputStream=new BufferedOutputStream(fileOutputStream);

byte[] b=new byte[1024];
int i=0;
while ((i=bufferedInputStream.read(b))!=-1){
bufferedOutputStream.write(b,0,i);
System.out.println(i);
}
bufferedOutputStream.close();
fileOutputStream.close();
bufferedInputStream.close();
fileInputStream.close();
}catch (FileNotFoundException e){
System.out.println("文件不存在");
e.printStackTrace();
}catch (IOException e){
System.out.println("读取文件错误");
e.printStackTrace();
}
}

































以上是关于字节流--读取并复制图片的主要内容,如果未能解决你的问题,请参考以下文章

字节流案例——复制文件

Java字节流-从文件输入,输出到文件

字节流和字符流

案例:字节流复制文件

java重学系列之IO字节流

php如何将图片转成字节流