mirror of https://gitee.com/y_project/RuoYi.git
区分Byte[]类型防止出现死循环
parent
f9ba364d9f
commit
3111b66bdb
|
@ -7,6 +7,7 @@ import java.nio.charset.Charset;
|
|||
import java.text.NumberFormat;
|
||||
import java.util.Set;
|
||||
import com.ruoyi.common.utils.StringUtils;
|
||||
import org.apache.commons.lang3.ArrayUtils;
|
||||
|
||||
/**
|
||||
* 类型转换器
|
||||
|
@ -795,9 +796,14 @@ public class Convert
|
|||
{
|
||||
return (String) obj;
|
||||
}
|
||||
else if (obj instanceof byte[] || obj instanceof Byte[])
|
||||
else if (obj instanceof byte[])
|
||||
{
|
||||
return str((Byte[]) obj, charset);
|
||||
return str((byte[]) obj, charset);
|
||||
}
|
||||
else if (obj instanceof Byte[])
|
||||
{
|
||||
byte[] bytes = ArrayUtils.toPrimitive((Byte[]) obj);
|
||||
return str(bytes, charset);
|
||||
}
|
||||
else if (obj instanceof ByteBuffer)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue