实现代码
package Zuoye01; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; public class ImagesCopy { public static void main(String[] args) { //实现复制粘贴图片的功能 //1 地址 2 FileInput.. FileOut... //要复制粘贴要先读取 Input FileInputStream fis = null; FileOutputStream fos = null; try { fis = new FileInputStream("C:/MyDemo/1.jpg"); fos = new FileOutputStream("C:/MyDemo/2.jpg"); int num = -1; try { while((num = fis.read())!=-1) { fos.write(num); fos.flush(); } } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); }finally { try { if(fos!=null) { fos.close(); } try { if(fis!=null) { fis.close(); } } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } }