package cute;
import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;
public class cute{
public static void main(String args[])throws Exception{
BASE64Decoder d=new BASE64Decoder();
BASE64Encoder e=new BASE64Encoder();
String s="cute";
String y=e.encodeBuffer(s.getBytes());
System.out.println(y);
我怎样才能把 y 变回 cute ??? 我试了可是不行。。。
}
}