mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-04-05 17:38:05 +08:00
🎨 修复代码,避免 String 与 Integer 强转报错
This commit is contained in:
parent
e0e03d82ff
commit
b5a760d4ca
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user