package test;public class base64 {
public static void main(String[] args){
String str = "abc";
String str1 = new sun.misc.BASE64Encoder().encode(str.getBytes());
//인코딩
System.out.println("str1===>"+str1);
String str2 = "";
try{
str2 = new String(new sun.misc.BASE64Decoder().decodeBuffer(str1));
//디코딩
}catch(Exception e){
e.printStackTrace();
}
System.out.println(str2);
}
}
'JAVA' 카테고리의 다른 글
자바 폴더 삭제 (2) | 2009.02.11 |
---|---|
자바로 디렉토리 사이즈 보기 (0) | 2009.01.05 |
자바로 폴더내용 복사 (0) | 2008.11.20 |
자바 파일 복사 2 (0) | 2008.11.16 |
자바 파일 복사 1 (0) | 2008.11.16 |
댓글