fix json bug

This commit is contained in:
Looly 2022-06-06 00:38:48 +08:00
parent 78b6c9909e
commit bd7d088178
4 changed files with 35 additions and 2 deletions

View File

@ -3,7 +3,7 @@
-------------------------------------------------------------------------------------------------------------
# 5.8.3.M1 (2022-06-05)
# 5.8.3.M1 (2022-06-06)
### 🐣新特性
* 【extra 】 mail增加writeTimeout参数支持issue#2355@Github
@ -11,6 +11,7 @@
### 🐞Bug修复
* 【core 】 修复NumberUtil.isXXX空判断错误issue#2356@Github
* 【core 】 修复Convert.toSBC空指针问题issue#I5APKK@Gitee
* 【json 】 修复Bean中存在bytes无法转换问题issue#2365@Github
-------------------------------------------------------------------------------------------------------------

View File

@ -1,5 +1,6 @@
package cn.hutool.core.convert.impl;
import cn.hutool.core.codec.Base64;
import cn.hutool.core.collection.IterUtil;
import cn.hutool.core.convert.AbstractConverter;
import cn.hutool.core.convert.Convert;
@ -124,6 +125,16 @@ public class ArrayConverter extends AbstractConverter<Object> {
return convertArrayToArray(value.toString().toCharArray());
}
//issue#2365
// 字符串转bytes首先判断是否为Base64是则转换否则按照默认getBytes方法
if(targetComponentType == byte.class){
final String str = value.toString();
if(Base64.isBase64(str)){
return Base64.decode(value.toString());
}
return str.getBytes();
}
// 单纯字符串情况下按照逗号分隔后劈开
final String[] strings = StrUtil.splitToArray(value.toString(), CharUtil.COMMA);
return convertArrayToArray(strings);

View File

@ -1046,7 +1046,7 @@ public class ImgUtil {
/**
* 旋转图片为指定角度<br>
* 来自http://blog.51cto.com/cping1982/130066
* 来自<a href="http://blog.51cto.com/cping1982/130066">http://blog.51cto.com/cping1982/130066</a>
*
* @param image 目标图像
* @param degree 旋转角度

View File

@ -0,0 +1,21 @@
import cn.hutool.json.JSONUtil;
import lombok.Data;
import org.junit.Assert;
import org.junit.Test;
public class Issue2365Test {
@Test
public void toBeanTest(){
String jsonStr = "{\"fileName\":\"aaa\",\"fileBytes\":\"AQ==\"}";
final FileInfo fileInfo = JSONUtil.toBean(jsonStr, FileInfo.class);
Assert.assertEquals("aaa", fileInfo.getFileName());
Assert.assertArrayEquals(new byte[]{1}, fileInfo.getFileBytes());
}
@Data
public static class FileInfo {
private String fileName;
private byte[] fileBytes;
}
}