コード例 #1
0
 public String getUrl() {
   try {
     return Base64.decode(getEvaKey());
   } catch (Exception e) {
     return "";
   }
 }
コード例 #2
0
 public void setUrl(String url) {
   try {
     setEvaKey(Base64.encode(url));
   } catch (Exception e) {
     setEvaKey("");
   }
 }
コード例 #3
0
 public static String getUrlFormKey(String key) {
   try {
     return Base64.decode(key);
   } catch (Exception e) {
     return "";
   }
 }