We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
触发场景描述
NumberUtils.parseInteger(String string, ExcelContentProperty contentProperty) ; 当string为null和""时,会抛java.lang.NumberFormatException。
触发Bug的代码
public static Integer parseInteger(String string, ExcelContentProperty contentProperty) throws ParseException { if (!hasFormat(contentProperty)) { return Integer.valueOf(string); } return parse(string, contentProperty).intValue(); }
提示的异常或者没有达到的效果
The text was updated successfully, but these errors were encountered:
修复在空字符串的时候 格式转换异常 #520
71a341c
非常感谢您的意见。该问题已经在最新版本修复。
Sorry, something went wrong.
zhuangjiaju
No branches or pull requests
触发场景描述
NumberUtils.parseInteger(String string, ExcelContentProperty contentProperty) ;
当string为null和""时,会抛java.lang.NumberFormatException。
触发Bug的代码
提示的异常或者没有达到的效果
The text was updated successfully, but these errors were encountered: