摘要: /** * 压缩或者解压缩字符串 aaaaddcccmmm-> 4a2d3c3m * 3c4f3d-> cccffffddd * @return */public static String zipOrUnZipStr(String srcStr){ if (srcStr==null || srcS 阅读全文
posted @ 2025-03-21 15:46 CoderOilStation 阅读(13) 评论(0) 推荐(0)
摘要: /** * 对字符串加密 */public static String encodeStr(String srcDecodeStr){ if (srcDecodeStr == null || srcDecodeStr.trim().isEmpty()) { System.out.println("输 阅读全文
posted @ 2025-03-21 07:59 CoderOilStation 阅读(32) 评论(0) 推荐(0)