자바 이미지 복사 기능 구현 프로 세 스 분석

수요 설명

사고의 방향 을 실현 하 다.
코드 설명 참조
코드 내용
IO 로 그림 복사 하기

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

/**
 * @auther::9527
 * @Description:    
 * @program:    
 * @create: 2019-08-10 00:26
 */
public class Tenth {
  public static void main(String[] args) {
    FileInputStream fis = null;
    FileOutputStream fos = null;

    try {
      //          
      fis = new FileInputStream("c:/a.jpg");
      fos = new FileOutputStream("c:/b.jpg");
      //     ,        
      int temp = 0;
      //      ,          , read()    ,     -1,     -1,     
      while ((temp = fis.read())!=-1){
        //           
        fos.write(temp);
      }
      System.out.println("  c  a.jpg   b.jpg");
    } catch (FileNotFoundException e) {
      e.printStackTrace();
    } catch (IOException e) {
      e.printStackTrace();
    }
    try {
      //         
      fos.close();
      fis.close();
    } catch (IOException e) {
      e.printStackTrace();
    }
  }
}
실행 결과



이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기