Integer类中的parseInt方法

时间:2025-04-01 20:35:00
package test; import java.util.Scanner; public class FormatExceptionDemo { public static void main(String args[]) { Scanner input =new Scanner(System.in); String str= input.nextLine(); int n= -1; try { n=Integer.parseInt(str); System.out.println(n); } catch(NumberFormatException e) { System.out.println("输入的不是整数!"); } finally { System.out.println("转换成功"); System.exit(0); } input.close(); } }