当前位置: 代码迷 >> 综合 >> java.lang.NumberFormatException: Illegal embedded sign character
  详细解决方案

java.lang.NumberFormatException: Illegal embedded sign character

热度:108   发布时间:2023-11-19 20:35:34.0

报错原因

要转换的数字字符串格式不合法,符号位位置非法;

例如

String str="2018:%";

 int a=Tools.toTen(sz[0].substring(0, 2));

就会报如上错误;主要是字符串str不能转换为Int类型,里面含有非法符号

 

  相关解决方案