🎨 修复代码,避免 String 与 Integer 强转报错

This commit is contained in:
陈明 2023-04-19 13:47:50 +00:00 committed by Binary Wang
parent e0e03d82ff
commit b5a760d4ca

View File

@ -24,6 +24,11 @@ public class IntegerArrayConverter extends StringConverter {
@Override
public Object fromString(String str) {
if (str == null || str.length() == 0) {
return null;
}
final Iterable<String> iterable = Splitter.on(",").split(str);
final String[] strings = Iterables.toArray(iterable, String.class);
Integer[] result = new Integer[strings.length];