Commit ba0bf269 by songxiang

base64转码

parent 811e4af9
......@@ -1043,7 +1043,7 @@ public class FileUtils {
OutputStream out = null;
try {
// Base64解码
byte[] b = Base64.decodeBase64(targetPath);
byte[] b = Base64.decodeBase64(base64Code);
for (int i = 0; i < b.length; ++i) {
if (b[i] < 0) {// 调整异常数据
b[i] += 256;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment