BASE
// 將 s 進行 BASE
public static String getBASE
if (s == null) return null;
return (new sun
}
// 將 BASE
public static String getFromBASE
if (s == null) return null;
BASE
try {
byte[] b = decoder
return new String(b);
} catch (Exception e) {
return null;
}
}
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/19386.html