国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 定结县| 昌乐县| 宁南县| 白河县| 丹东市| 榆社县| 都匀市| 南城县| 太和县| 贺兰县| 鄱阳县| 莆田市| 方正县| 平远县| 兰州市| 开阳县| 河北区| 图木舒克市| 醴陵市| 奈曼旗| 慈溪市| 清涧县| 上犹县| 嘉善县| 南漳县| 明水县| 金寨县| 紫金县| 班戈县| 额尔古纳市| 千阳县| 雷波县| 镇安县| 鹿邑县| 延长县| 赤城县| 威宁| 通河县| 南雄市| 宜川县| 教育|