国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

base64加密解密工具類

2019-11-09 16:19:16
字體:
供稿:網(wǎng)友
package com.lyt.base.util;import java.io.UnsupportedEncodingException;import sun.misc.*; public class Base64Util {      // 加密      @SupPRessWarnings("restriction")public static String getBase64(String str) {          byte[] b = null;          String s = null;          try {              b = str.getBytes("utf-8");          } catch (UnsupportedEncodingException e) {              e.printStackTrace();          }          if (b != null) {              s = new BASE64Encoder().encode(b);          }          return s;      }        // 解密      @SuppressWarnings("restriction")public static String getFromBase64(String s) {          byte[] b = null;          String result = null;          if (s != null) {  BASE64Decoder decoder = new BASE64Decoder();              try {                  b = decoder.decodeBuffer(s);                  result = new String(b, "utf-8");              } catch (Exception e) {                  e.printStackTrace();              }          }          return result;      }  }  
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 大冶市| 海安县| 汾西县| 泾阳县| 大厂| 汉源县| 平江县| 满城县| 稻城县| 白水县| 木兰县| 缙云县| 桐柏县| 彭州市| 麻栗坡县| 福泉市| 宣威市| 吴堡县| 泸溪县| 喜德县| 武邑县| 柳州市| 顺义区| 勐海县| 铜山县| 丽江市| 祁门县| 铅山县| 射洪县| 齐河县| 神农架林区| 阿坝| 台北市| 朝阳县| 赞皇县| 东平县| 双流县| 荣昌县| 收藏| 贵南县| 山西省|