sitelink1 https://pandorica.tistory.com/4 
sitelink2  
sitelink3  
sitelink4  
sitelink5  
sitelink6  

자바프로그램을 하다보면 base64형식으로 파일을 인코딩, 디코딩해야하는 일이 가끔 있을것이다. 

아래는 다양한 방법으로 base64형식으로 인코딩, 디코딩하는 방법을 보여준다

 

원본파일을 base64로 인코딩된 파일로 생성한다

private static void encodeFiletoFile(String inputFileName, String outputFileName)

            throws IOException {

        BASE64Encoder base64Encoder = new BASE64Encoder();

        InputStream in = new FileInputStream(new File(inputFileName));

        OutputStream out = new FileOutputStream(new File(outputFileName));

        base64Encoder.encodeBuffer(in, out);

 

        in.close();

        out.close();

 

    }

 

원본파일을 baes64인코딩 문자열로바꾸어준다.

 private static void encodeFiletoString(String inputFileName)

            throws IOException {

        

     BASE64Encoder base64Encoder = new BASE64Encoder();

        InputStream in = new FileInputStream(new File(inputFileName));

        

        ByteArrayOutputStream byteOutStream=new ByteArrayOutputStream();

        

        int len=0;

        byte[] buf = new byte[1024];

        while((len=in.read(buf)) != -1){

         byteOutStream.write(buf, 0, len);

        }

       

        byte fileArray[]=byteOutStream.toByteArray();

        

        String encodeString=base64Encoder.encodeBuffer(fileArray);

        

        System.out.println(encodeString);

    }

 

인코딩된 파일을 다시 디코딩해서 원본파일로 만들어준다

 private static void decodeFiletoFile(String inputFileName, String outputFileName)

            throws IOException {

 

     BASE64Decoder base64Decoder = new BASE64Decoder();

     InputStream in = new FileInputStream(new File(inputFileName));

        OutputStream out = new FileOutputStream(new File(outputFileName));

        base64Decoder.decodeBuffer(in, out);

 

        in.close();

        out.close();

 

    }

 

인코딩된 문자열을 다시 디코딩해서 원본파일을 만들어준다

 private static void decodeStringtoFile(String encodesString, String outputFileName)

            throws IOException {

 

     BASE64Decoder base64Decoder = new BASE64Decoder();

      

        InputStream inStream = new ByteArrayInputStream(encodesString.toString().getBytes("UTF-8"));

        

        BufferedOutputStream outStream = new BufferedOutputStream(new FileOutputStream(outputFileName));

        

        base64Decoder.decodeBuffer(inStream, outStream);      

        inStream.close();

        outStream.close();

    }

 

문자열을 base64로 인코딩한다

public static String encode(String s) {

  

byte[] encodeBytes=s.getBytes("UTF-8");

 

        BASE64Encoder base64Encoder = new BASE64Encoder();

        ByteArrayInputStream bin = new ByteArrayInputStream(encodeBytes);

        ByteArrayOutputStream bout = new ByteArrayOutputStream();

        byte[] buf = null;

 

        try {

            base64Encoder.encodeBuffer(bin, bout);

        } catch (Exception e) {

            e.printStackTrace();

        }

        buf = bout.toByteArray();

        return new String(buf).trim();

    }

 

인코딩된 문자열을 base64로 디코딩한다.

 private static void decodeString(String s)  throws Exception {

 

     BASE64Decoder base64Decoder = new BASE64Decoder();

 

     byte[] a=base64Decoder.decodeBuffer(s);

 

     System.out.println("decode.."+new String(a));

 

}



 

번호 제목 글쓴이 날짜 조회 수
286 MySQL 한글깨짐현상 제거 ( UTF8 ) 황제낙엽 2019.12.08 942
285 java.util.ConcurrentModificationException 황제낙엽 2019.09.08 639
284 String, StringBuilder, StringBuffer file 황제낙엽 2019.08.03 721
283 String vs StringBuffer vs StringBuilder in Java 황제낙엽 2019.08.03 1011
282 Calendar.set() - 날짜 설정하기, Calendar.add() - 날짜 더하기, Calendar.roll() - 그 부분만 날짜 더하기 황제낙엽 2019.08.02 728
281 File 클래스 정리 황제낙엽 2019.07.29 794
280 파일 사이즈를 반환하는 유틸 함수 황제낙엽 2019.07.29 876
279 BufferedReader, BufferedWriter를 활용한 빠른 입출력 황제낙엽 2019.07.29 787
278 현재날짜, 현재시간을 원하는 형태로 출력하는(Format) 다양한 방법 file 황제낙엽 2019.07.29 685
277 자바 소수점 n번째 자리까지 반올림하기 황제낙엽 2019.07.29 779
» java base64 encodeing,decoding 사용법 황제낙엽 2019.07.24 670
275 java.lang.StackTraceElement Class의 내용 출력 황제낙엽 2019.07.03 767
274 세션의 timeout 설정 >> HttpSession.setMaxInactiveInterval() 황제낙엽 2019.07.03 8906
273 [HttpURLConnection] 서버와의 통신 시도 시점 관련 황제낙엽 2019.06.23 863
272 역컴파일러 (decompiler, jad.exe) file 황제낙엽 2019.06.20 671
271 Microsoft SQL Server JDBC 드라이버 2.0 file 황제낙엽 2019.05.22 771
270 수치 데이터 처리 유틸리티 file 황제낙엽 2019.05.12 2104
269 한글 초성 중성 종성 분리 유틸리티(자작) file 황제낙엽 2019.05.07 830
268 한글 초성 중성 종성 분리 (자모분리) 황제낙엽 2019.05.07 769
267 한글 인코딩의 이해 1편: 한글 인코딩의 역사와 유니코드 황제낙엽 2019.05.07 786