我自己解决了。
- /**
- * 复制非文本文件
- */
- public static void copyMedia() throws IOException{
- InputStream in = new FileInputStream("man.mp3");
- OutputStream out = new FileOutputStream("man_copy.mp3");
- byte[] buff = new byte[1024*8];
- int len = 0;
- while((len =in.read(buff))!=-1){
- out.write(buff,0,len);
- }
- in.close();
- out.close();
- }
复制代码
|