91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中怎么實現數據的加密解密

發布時間:2021-06-26 16:33:44 來源:億速云 閱讀:188 作者:Leah 欄目:移動開發

本篇文章為大家展示了Android中怎么實現數據的加密解密,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

1:首先我們新建一個類用來加密和解密如下所示:

*  * Created by acer-pc on 2018/6/22.  */  public class EncryptUtil {      private static final String ALGORITHM = "AES/ECB/PKCS5Padding";      // 加密秘鑰     private static final String AES_KEY = "XXX(我們自己設置)";      private static SecretKeySpec secretKeySpec;      /**      * 前臺傳輸數據解密      *      * @param rawJson 原始JSON      * @return 解密后的Map      */     public static <T extends BaseResult> T decrypt(String rawJson, Class<T> tClass) {          T result=null;          try {             Cipher cipher = Cipher.getInstance(ALGORITHM);             cipher.init(Cipher.DECRYPT_MODE, getAesKey());             byte[] paramBytes = cipher.doFinal(Base64.decode(rawJson.getBytes("UTF-8"), Base64.NO_WRAP));             String paramJson = new String(paramBytes);             result = GsonUtil.fromJson(paramJson, tClass);         } catch (NoSuchPaddingException e) {             e.printStackTrace();         } catch (NoSuchAlgorithmException e) {             e.printStackTrace();         } catch (InvalidKeyException e) {             e.printStackTrace();         } catch (BadPaddingException e) {             e.printStackTrace();         } catch (IllegalBlockSizeException e) {             e.printStackTrace();         } catch (UnsupportedEncodingException e) {             e.printStackTrace();         }          return result;     }      /**      * 數據傳輸過程中需要加密設置      * @param rawMap      * @return      */      public static String encrypt(Map<String, String> rawMap) {         String result = "";          try {             Cipher cipher = Cipher.getInstance(ALGORITHM);             cipher.init(Cipher.ENCRYPT_MODE, getAesKey());              String rawJson = GsonUtil.toJson(rawMap);             byte[] paramBytes = cipher.doFinal(rawJson.getBytes("UTF-8"));             result = Base64.encodeToString(paramBytes, Base64.NO_WRAP);         } catch (NoSuchPaddingException e) {             e.printStackTrace();         } catch (NoSuchAlgorithmException e) {             e.printStackTrace();         } catch (InvalidKeyException e) {             e.printStackTrace();         } catch (BadPaddingException e) {             e.printStackTrace();         } catch (IllegalBlockSizeException e) {             e.printStackTrace();         } catch (UnsupportedEncodingException e) {             e.printStackTrace();         }          return result;     }      private static SecretKeySpec getAesKey() {         if (secretKeySpec != null) {             return secretKeySpec;         }         try {             secretKeySpec = new SecretKeySpec(AES_KEY.getBytes("UTF-8"), "AES");         } catch (UnsupportedEncodingException e) {             e.printStackTrace();         }          return secretKeySpec;     } }

2:其中的BaseResult如下(要解析的數據的根類,放數據的類要繼承這個類):

public class BaseResult {      private int result;     private String message;      public int getResult() {         return result;     }      public void setResult(int result) {         this.result = result;     }      public String getMessage() {         return message;     }      public void setMessage(String message) {         this.message = message;     } }

3:當我們在主類中(或者Fragment中)使用的時候如下:

//加載數據 public void initData() {     //這里利用線程池使得線程在線程池中運行防止程序卡死     APIConfig.getDataIntoView(new Runnable() {         @Override         public void run() {             Map<String, String> map = new HashMap<>();             map.put("token", RuntimeConfig.user.getToken());             String paramJson = EncryptUtil.encrypt(map);             String url = "http://這里是我們的目標網址";             String rs = HttpUtil.GetDataFromNetByPost(url,                     new ParamsBuilder().addParam("paramJson", paramJson).getParams());             // rs判空             final DiaryDetailResult result = EncryptUtil.decrypt(rs, DiaryDetailResult.class);              UIUtils.runOnUIThread(new Runnable() {                 @Override                 public void run() {                     //這里禁用                     if (result != null && result.getResult() == APIConfig.CODE_SUCCESS) {                         Diary diaryData = result.getData().getContent();                         //接下來對解析出的數據進行自己的操作                         。。。。。。。。。。。。                      } else {                       // Toast彈出加載失敗;                     }                 }             });         }     }); }

上述內容就是Android中怎么實現數據的加密解密,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

子洲县| 咸宁市| 凉城县| 望都县| 繁峙县| 萍乡市| 五莲县| 孙吴县| 化德县| 天等县| 平昌县| 荥阳市| 昭苏县| 淮滨县| 房山区| 大足县| 河北区| 贺兰县| 襄垣县| 蒙城县| 东方市| 海晏县| 盖州市| 丰镇市| 湖州市| 桐城市| 池州市| 辽阳县| 娱乐| 克什克腾旗| 皮山县| 巩留县| 威远县| 渑池县| 四子王旗| 霍山县| 临西县| 沐川县| 农安县| 同德县| 凤阳县|