我的程序应该做的是,当你输入一个像“二”这样的字符串而不是一个数字时,会出现一个弹出窗口,上面写着:你必须输入正数数据!我有那部分,但我想更改弹出窗口顶部的标题。现在它只是说“消息”。
catch (NumberFormatException e)
{
JOptionPane.showMessageDialog(this, "You must enter positive numeric data!");
}
我需要它看起来更像这样:http ://homepages.uc.edu/~thomam/OOProg_1/assignment3.html
顺便说一句,我使用 NetBeans 作为我的 IDE。