- package FileOutputStream;
- import java.io.*;
- public class CopyPic {
- public static void main(String[] args) throws IOException{
- FileOutputStream fos = null;
- FileInputStream fis = null;
-
- try{
- fos = new FileOutputStream("b.JPEG");// 我这个就打开看不到 咋弄的
- fis = new FileInputStream("a.JPEG");
-
- // fos = new FileOutputStream("QQ11.bmp");
- // fis = new FileInputStream("QQ1.bmp");
- //
- byte[] buf = new byte[1024];
- int len = 0;
- while((len = fis.read(buf))!= -1)
- {
- fos.write(buf, 0, len);
- }
- }
- catch(IOException e)
- {
- System.out.println("复制文件失败");
- }
- finally{
- try{
- if(fis != null)
- fis.close();
- }
- catch(IOException e)
- {
- System.out.println("读关闭失败");
- }
-
- try{
- if(fos != null)
- fos.close();
- }
- catch(IOException e)
- {
- System.out.println("写入关闭失败");
- }
-
- }
- }
- }
复制代码
地下的那个QQ 截图就能打开,上面的那个a 拷贝b 就不能打开,确实能拷贝但是不能打开
大小现实的是0 字节咋弄的呢。 |
|