我的程序应该做的是,当你输入一个像“two”这样的字符串而不是数字时,弹出窗口会显示出来:你必须输入正数值数据!我有那个部分,但我想改变弹出窗口顶部的标题。现在它只是说“消息”。
catch (NumberFormatException e)
{
JOptionPane.showMessageDialog(this, "You must enter positive numeric data!");
}
我需要它看起来更像这样:http://homepages.uc.edu/~thomam/OOProg_1/assignment3.html
顺便说一句,我使用NetBeans作为我的IDE。
答案 0 :(得分:7)
查看JOptionPane API,您会看到showMessageDialog
方法重载,它们会带来更多可满足您需求的参数。
例如,
public static void showMessageDialog(Component parentComponent,
Object message,
String title,
int messageType)
如果你要从这个答案得到一个重要的事实/教训,它将包含在前5个单词中:“查看xxx API”。熟悉Java API将帮助您在Java研究中非常。