我想让我的程序在出现此错误时执行某些操作: Exception in thread "AWT-EventQueue-0" java.lang.NumberFormatException: For input string: "lekker hoor"
。有人可以帮我这个吗?
我希望在文本错误发生时让它打开Joptionpane: Dont use letters or spaces. Only use numbers.
答案 0 :(得分:2)
使用try catch block:
try {
//your code....
} catch (NumberFormatException e1) {
// Open your JOptionPane Here
}