Convert InputStream to File
Google Spreadsheet API 를 이용하는 중 InputStream 타입으로 읽어들인 p12 파일을 다시 File 타입으로 변환을 해야 하는 경우가 생겼습니다.
방법은? 구글에 있었습니다. 역시 코딩을 구글을 통해서 배우는 것이죠.
public class Convert { public static void main(String[] args) throws Exception { InputStream in = Convert.class.getResourceAsStream("/52e0795d5152.p12"); File p12 = File.createTempFile("p12", ".tmp"); IOUtils.copy(in, new FileOutputStream(p12)); System.out.println("File 타입의 p12 로 변환 완료."); } }
'JAVA' 카테고리의 다른 글
Spring Boot::DB 에 한글이 깨져서 저장될 때 해결 방법. (2) | 2016.03.08 |
---|---|
"[WARNING] The requested profile "pom.xml" could not be activated because it does not exist." 해결 방법 (1) | 2016.02.17 |
[JAVA] "xxx.jar에 기본 Manifest 속성이 없습니다." 오류 해결방법 (1) | 2015.12.15 |