摘要: 1、导包 import cn.hutool.core.codec.Base64Encoder; 2、解密 public static String deBASE64(String string) { byte[] decode = Base64.getDecoder().decode(string) 阅读全文
posted @ 2024-03-05 17:44 Only_Aptx-4869 阅读(42) 评论(0) 推荐(0)
摘要: 在excel中按alt+f11(打开Visual Basic工具)。添加模块,粘贴一下代码 ` Function EncodeBase64(text$) Dim b With CreateObject("ADODB.Stream") .Open: .Type = 2: .Charset = "utf 阅读全文
posted @ 2024-03-05 17:36 Only_Aptx-4869 阅读(2314) 评论(0) 推荐(0)