WordHandlerUtils.java 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. package com.gzlh.utils;
  2. import cn.hutool.core.util.CharsetUtil;
  3. import cn.hutool.core.util.StrUtil;
  4. import com.gzlh.device.led.utils.ColorConver;
  5. import com.gzlh.device.led.utils.YangBandPackage;
  6. import javax.crypto.BadPaddingException;
  7. import javax.crypto.Cipher;
  8. import javax.crypto.IllegalBlockSizeException;
  9. import javax.crypto.NoSuchPaddingException;
  10. import javax.crypto.spec.SecretKeySpec;
  11. import javax.xml.bind.DatatypeConverter;
  12. import java.math.BigDecimal;
  13. import java.math.RoundingMode;
  14. import java.nio.charset.Charset;
  15. import java.security.InvalidKeyException;
  16. import java.security.NoSuchAlgorithmException;
  17. import java.util.Arrays;
  18. public class WordHandlerUtils {
  19. static String key ="SC35fdGrQofSMT5a";
  20. public static String msgToASCII(String msg){
  21. int len=msg.length();
  22. StringBuilder sb=new StringBuilder();
  23. for (int i=0;i<len;i++){
  24. char ch=msg.charAt(i);
  25. String bit =ch+"";
  26. if (isChinese(ch)){//中文
  27. sb.append(chineseToASCII(bit));
  28. }else if (Character.isDigit(ch)){//数字
  29. sb.append(Integer.parseInt(bit) + 30);
  30. }else if (StrUtil.equals(".", bit)) {
  31. sb.append("2E");
  32. }else if (Character.isLetter(ch)){
  33. sb.append(Integer.toHexString(ch));
  34. }else if (StrUtil.contains(ch+""," ")){
  35. sb.append("20");
  36. }
  37. }
  38. return sb.toString();
  39. }
  40. public static void main(String[] args) throws Exception {
  41. System.out.println(msgToASCII("你好ssss"));
  42. String ssss = AESEncrypt("你好ssss");
  43. AESDecrypt(ssss);
  44. }
  45. /**
  46. * 中文转ascii
  47. * @param zh
  48. * @return
  49. */
  50. private static String chineseToASCII(String zh) {
  51. byte[] gb2312Bytes = zh.getBytes(Charset.forName("GB2312"));
  52. return bytesToHexString(gb2312Bytes);
  53. }
  54. /**
  55. * 红色字体在文字前加代码 5C 43 31,绿色加代码5C 43 32,黄色加代码5C 43 33
  56. *
  57. * @param weight
  58. * @return
  59. */
  60. private static String numToASCII(int weight) {
  61. String str = BigDecimal.valueOf(weight).divide(BigDecimal.valueOf(1000), 2, RoundingMode.HALF_UP).toString();
  62. int len = str.length();
  63. StringBuilder sb = new StringBuilder();
  64. for (int i = 0; i < len - 1; i++) {
  65. String bit = StrUtil.sub(str, i, i + 1);
  66. if (StrUtil.equals(".", bit)) {
  67. sb.append("2E").append(" ");
  68. continue;
  69. }
  70. sb.append(Integer.parseInt(bit) + 30).append(" ");
  71. }
  72. return sb.toString();
  73. }
  74. private static boolean isChinese(char ch) {
  75. Character.UnicodeBlock ub = Character.UnicodeBlock.of(ch);
  76. if (ub == Character.UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS
  77. || ub == Character.UnicodeBlock.CJK_COMPATIBILITY_IDEOGRAPHS
  78. || ub == Character.UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A
  79. || ub == Character.UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B
  80. || ub == Character.UnicodeBlock.CJK_SYMBOLS_AND_PUNCTUATION
  81. || ub == Character.UnicodeBlock.HALFWIDTH_AND_FULLWIDTH_FORMS
  82. || ub == Character.UnicodeBlock.GENERAL_PUNCTUATION) {
  83. return true;
  84. }
  85. return false;
  86. }
  87. private static String bytesToHexString(byte[] bytes) {
  88. StringBuilder sb = new StringBuilder();
  89. for (byte b : bytes) {
  90. String hex = Integer.toHexString(b & 0xFF);
  91. if (hex.length() == 1) {
  92. sb.append('0');
  93. }
  94. sb.append(hex.toUpperCase());
  95. }
  96. return sb.toString();
  97. }
  98. public static String AESEncrypt(String data) {
  99. SecretKeySpec secretKey = new SecretKeySpec(key.getBytes(), "AES");
  100. Cipher cipher = null; // 选择AES算法、工作模式为ECB、填充方式为PKCS5Padding
  101. byte[] encryptedBytes =null;
  102. try {
  103. cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");
  104. cipher.init(Cipher.ENCRYPT_MODE, secretKey); // 初始化加密器
  105. encryptedBytes = cipher.doFinal(data.getBytes()); // 对明文进行加密操作
  106. } catch (NoSuchAlgorithmException | NoSuchPaddingException | BadPaddingException
  107. | IllegalBlockSizeException | InvalidKeyException e) {
  108. e.printStackTrace();
  109. }
  110. // System.out.println("Encrypted Text: " + DatatypeConverter.printHexBinary(encryptedBytes));
  111. return DatatypeConverter.printHexBinary(encryptedBytes);
  112. }
  113. public static String AESDecrypt(String data) {
  114. byte[] result = new byte[data.length()/2];
  115. for (int i = 0; i < data.length()/2; i++) {
  116. result[i] =Integer.valueOf(data.substring(i * 2, i * 2 + 2), 16).byteValue();
  117. }
  118. SecretKeySpec secretKey = new SecretKeySpec(key.getBytes(), "AES");
  119. Cipher cipher = null; // 选择AES算法、工作模式为ECB、填充方式为PKCS5Padding
  120. byte[] decryptedBytes = null;
  121. String decryptStr =null;
  122. try {
  123. cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");
  124. cipher.init(Cipher.DECRYPT_MODE, secretKey); // 初始化解密器
  125. decryptedBytes = cipher.doFinal(result); // 对密文进行解密操作
  126. // System.out.println("Decrypted Text: " + new String(decryptedBytes));
  127. decryptStr=new String(decryptedBytes);
  128. } catch (NoSuchAlgorithmException | NoSuchPaddingException | BadPaddingException
  129. | IllegalBlockSizeException | InvalidKeyException e) {
  130. e.printStackTrace();
  131. }
  132. return decryptStr;
  133. }
  134. }