我找到了這行代碼得到了錯誤,如果輸入的不是一個數字檢查輸入空
int sum = Integer.parseInt(request.getParameter("sum"));
錯誤消息是
type Exception report
message
descriptionThe server encountered an internal error() that prevented it from fulfilling this request.
exception
org.apache.jasper.JasperException: java.lang.NumberFormatException: For input string: "a"
root cause
java.lang.NumberFormatException: For input string: "a"
如何處理輸入的輸入是否一個字符串或null?
感謝
使用'if'語句。 – SLaks 2012-02-27 03:44:28
發現異常? – 2012-02-27 03:44:37
在catch中使用out.println(「請輸入數字」),但是沒有輸出?爲什麼? – hkguile 2012-02-27 03:50:03