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

首頁 > 學院 > 開發設計 > 正文

base64加密解密工具類

2019-11-09 15:04:12
字體:
來源:轉載
供稿:網友
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;      }  }  
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 东兰县| 二连浩特市| 沅江市| 上高县| 衡东县| 长丰县| 临武县| 南皮县| 北辰区| 灌南县| 格尔木市| 石首市| 隆昌县| 大埔区| 青冈县| 林州市| 平度市| 汉寿县| 永济市| 曲松县| 津市市| 新泰市| 逊克县| 新竹市| 韶关市| 平泉县| 万源市| 榆中县| 玉山县| 子洲县| 正镶白旗| 永胜县| 麻栗坡县| 永济市| 麻江县| 博爱县| 正安县| 开平市| 崇信县| 丹阳市| 锡林浩特市|