정미나닷컴
[Java] 자바 Base64 인코딩 / 디코딩 본문
* base64Encode
* base64Decode
public static String base64Encode(String str) throws java.io.IOException{
if ( str == null || str.equals("") ){
return "";
}else{
sun.misc.BASE64Encoder encoder = new sun.misc.BASE64Encoder();
byte[] b1 = str.getBytes();
String result = encoder.encode(b1);
return result;
}
}
if ( str == null || str.equals("") ){
return "";
}else{
sun.misc.BASE64Encoder encoder = new sun.misc.BASE64Encoder();
byte[] b1 = str.getBytes();
String result = encoder.encode(b1);
return result;
}
}
* base64Decode
public static String base64Decode(String str) throws java.io.IOException{
if( str == null || str.equals("") ){
return "";
}else{
sun.misc.BASE64Decoder decoder = new sun.misc.BASE64Decoder();
byte[] b1 = decoder.decodeBuffer(str);
String result = new String(b1);
return result;
}
}
if( str == null || str.equals("") ){
return "";
}else{
sun.misc.BASE64Decoder decoder = new sun.misc.BASE64Decoder();
byte[] b1 = decoder.decodeBuffer(str);
String result = new String(b1);
return result;
}
}
'IT' 카테고리의 다른 글
[Oracle] 오라클 일반적인 날짜형 함수 (0) | 2010.11.03 |
---|---|
[Oracle] 오라클 현재 날짜를 반환하는 함수 (0) | 2010.11.03 |
[Oracle] 오라클 REPLACE 함수 (0) | 2010.10.25 |
[Java] 자바 데이터 암호화 (0) | 2010.10.11 |
[jQuery] Juitter Plugin 을 이용한 트위터 실시간 검색 (0) | 2010.10.07 |