如何删除JOptionPane中的问号?

如何摆脱JOptionPane左上角的任何标记?

int result = JOptionPane.showConfirmDialog(null, myPanel, 
                   "Please Enter X and Y Values", JOptionPane.OK_CANCEL_OPTION);

这工作正常,但我想删除讨厌的?在左上角.

解决方法:

使用PLAIN_MESSAGE消息类型

JOptionPane.showConfirmDialog(null, "Help",
    "Please Enter X and Y Values", 
    JOptionPane.OK_CANCEL_OPTION, 
    JOptionPane.PLAIN_MESSAGE);
上一篇:java – JoptionPane ShowConfirmDialog


下一篇:java – 关闭一个可运行的JOptionPane