输入:
2
我的节目:
public static void main(String args[] ) throws Exception {
/*
* Read input from stdin and provide input before running*/
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String line = br.readLine();
int cases = Integer.parseInt(line);}
错误:
Exception in thread "main" java.lang.NumberFormatException: For input string: "2 "
at java.lang.NumberFormatException.forInputString(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
如何解决这个问题我希望案例的值= 2;怎么了?