import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;
public class Base64Util {
public static void main( String[] args ) {
String data2 = " var re1=/[a-zA-Z]/g; return (FIELD_VALUE.match(re1)).length;";
try {
// BASE64加密
BASE64Encoder encoder = new BASE64Encoder();
String data = encoder.encode(data2.getBytes());
System.out.println("BASE64加密:" + data);
// BASE64解密
BASE64Decoder decoder = new BASE64Decoder();
byte[] bytes = decoder.decodeBuffer(data);
System.out.println("BASE64解密:" + new String(bytes));
} catch (Exception e) {
System.out.println("BASE64加解密异常");
e.printStackTrace();
}
}