如何更改java applet消息框的标题?

时间:2012-12-15 10:24:52

标签: java swing applet message joptionpane

嘿所以我按下按钮并出现一个名为“消息”的消息框。如何重命名此标题?

搜索此内容但未找到任何地方。

这就是我创建按钮然后激活它以便消息弹出的方式。没有粘贴整个代码导致它很长,但这对于这个按钮来说非常重要。

private JButton readmeButton;

readmeButton = new JButton("Readme");
layout.setConstraints(readmeButton, constraints);
chartPanel.add(readmeButton);
readmeButton.addActionListener(this);

JOptionPane.showMessageDialog(null, "lalala");

3 个答案:

答案 0 :(得分:1)

JOptionPane.showMessageDialog有多个重载。其中一个是showMessageDialog(Component parentComponent, Object message, String title, int messageType)

您可以使用:

JOptionPane.showMessageDialog(null, "lalala", "title", JOptionPane.PLAIN_MESSAGE);

最后一个参数的其他选项是ERROR_MESSAGEINFORMATION_MESSAGEWARNING_MESSAGEQUESTION_MESSAGE

答案 1 :(得分:0)

使用

JOptionPane.showMessageDialog(null, "lalala","Readme",JOptionPane.PLAIN_MESSAGE);

Reference

在上面的链接中,还有很多其他选项。看看吧。

答案 2 :(得分:0)

在您的代码中尝试此操作:

JOptionPane.showMessageDialog(null, "Hello","Exit",JOptionPane.QUESTION_MESSAGE);