병갈이 블록

번외 - 사진 복사관련. 본문

IT(Old)/JSP 실습 과정 기록

번외 - 사진 복사관련.

woojang 2017. 7. 29. 03:01

그냥 코드를 남긴다. 어차피 알아볼 수 있으니까.

File img = new File("읽어올 경로"); 

DataInputStream data = new DataInputStream(new BufferedInputStream(new FileInputStream(img)));

DataOutputStream out = new DataOutputStream(new BufferedOutputStream(new FileOutputStream("저장경로")));

byte[] bytee = new byte[ (int)img.length() ];

data.readFully(bytee);

out.write(bytee);

out.close();

data.close();  //파일과 관련된 정보를 저장.

잘 된다. 이걸 메서드화 시켜서 사용해야 될 듯 하다.

Comments