有特定错误时做一件事

时间:2015-12-11 08:44:54

标签: java if-statement try-catch

我想让我的程序在出现此错误时执行某些操作: Exception in thread "AWT-EventQueue-0" java.lang.NumberFormatException: For input string: "lekker hoor" 。有人可以帮我这个吗?

我希望在文本错误发生时让它打开Joptionpane: Dont use letters or spaces. Only use numbers.

1 个答案:

答案 0 :(得分:2)

使用try catch block:

try {
  //your code....
} catch (NumberFormatException e1) {
  // Open your JOptionPane Here
}