Java使用字节流实现图片音频的复制
程序员文章站
2022-03-17 15:14:51
java字节流复制图片音频java中的字节流可以实现文本的读入写入,当然也可以实现字节流对于图片的读入写入,就只需要写一个复制文本的字节输入输出流,然后在源文件和目标文件更换后缀图片就行了。下面给出了...
java字节流复制图片音频
java中的字节流可以实现文本的读入写入,当然也可以实现字节流对于图片的读入写入,就只需要写一个复制文本的字节输入输出流,然后在源文件和目标文件更换后缀图片就行了。
下面给出了source.png图片的路径,我们对其所对应的路径提供一个copysource.png的复制图片文件。
1.首先找到这两个文件的路径。如果写入的文本没有创建的话,会自动创建。
file source = new file("c:\\users\\lenovo\\desktop\\csdn\\iotest\\source.png"); file copysource = new file("c:\\users\\lenovo\\desktop\\csdn\\iotest\\copysource.png");
2.定义字节输入流,字节输出流
inputstream in = null; outputstream out = null;
3.通过字节输入流读入source.png文件的内容,在通过字节输出流将其输入到copysource.png中。
in = new fileinputstream(source); out =new fileoutputstream(copysource); byte[] bt = new byte[(int)source.length()]; int length = 0; while( (length = in.read(bt))!=-1) { out.write(bt,0,length); }
4.关闭流
if(null!=in) { try { in.close(); }catch(ioexception e) { } } if(null!=out) { try { out.close(); }catch(ioexception e) { } } }
经过上述的代码,就可以将source.png的图片复制到copysource.png中了。这个时候就会发现该路径下多出了一张copysource.png的图片了。
以下是完整代码:
import java.io.*; public class iotest { public static void main(string[]args) { file source = new file("c:\\users\\lenovo\\desktop\\csdn\\iotest\\source.png"); file copysource = new file("c:\\users\\lenovo\\desktop\\csdn\\iotest\\copysource.png"); inputstream in = null; outputstream out = null; try { in = new fileinputstream(source); out =new fileoutputstream(copysource); byte[] bt = new byte[(int)source.length()]; int length = 0; while( (length = in.read(bt))!=-1) { out.write(bt,0,length); } }catch(ioexception e) { }finally { if(null!=in) { try { in.close(); }catch(ioexception e) { } } if(null!=out) { try { out.close(); }catch(ioexception e) { } } } system.out.println("复制成功"); } }
和上面复制图片的代码一样,只需要修改文件路径,音频和视频都是可以复制的。
下面还是以上述的路径为例,给出一个后缀为mp4文件,我们将其通过代码复制一份,由上面的代码我们只需要修改文件路径的内容。
file source =new file("c:\\users\\lenovo\\desktop\\csdn\\iotest\\林俊杰-修炼爱情(超清).mp4"); file copysource = new file("c:\\users\\lenovo\\desktop\\csdn\\iotest\\copy修炼爱情jj.mp4");
我们发现可以复制成功
到此这篇关于java使用字节流实现图片音频的复制的文章就介绍到这了,更多相关java字节流内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 长春中秋吃什么