当我启动模态对话框并呈现异常时,该异常会出现在某个地方。我可以在调用dialog.setVisible()的代码中捕获它吗?
PS我知道Thread.setUncaughtExceptionHandler,我需要从调用该对话框的代码中捕获它。
PPS在此先感谢Andrey /。
public class TestSwing {
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
try {
JDialog jDialog = new JDialog();
JTable table = new JTable();
table.setModel(new DefaultTableModel() {
@Override public int getColumnCount() {return 1;}
@Override public int getRowCount() {return 1;}
@Override
public Object getValueAt(int row, int column) {
throw new RuntimeException("Hello");
}
});
jDialog.add(table);
jDialog.setModal(true);
jDialog.pack();
jDialog.setVisible(true);
System.out.println("dialog closed");
} catch (Exception e) {
e.printStackTrace();
System.out.println("got it");
}
}
});
}
}
千万里不及你
相关分类