Base64OutputStream1 [Java] Base64로 encoding된 파일을 decoding 해서 저장하기 이전 Article “HTTP POST 로 타서버로 파일 전송” 에서 전달된 Base64 로 encoding 된 파일을 받아서 decoding 하는 예제이다.… import org.apache.commons.codec.binary.Base64OutputStream;… stream = formFile.getInputStream(); // Base64로 encoding 된 파일 OutputStream bos = new Base64OutputStream(new FileOutputStream(“저장경로를 갖는 파일명”), false); int bytesRead = 0; byte[] buffer = new byte[8192]; while ((bytesRead = stream.read(buffer, 0, 8192).. 2013. 11. 15. 이전 1 다음