今天在做一个将String转换为Integer的功能时,发现Integer.parseInte()会抛出异常NumberFormatException. 函数Integer.parseInt(String)定义 public static int parseInt(String s) throws NumberFormatException 测试代码: public class Test { public static void main(String[] args) { Integer num…