2

我有一个 JOptionPane:

JOptionPane.showMessageDialog(null, text);

文本是一个刺痛:

String text = "Hello world."

我想要做的是改变文本的颜色,特别是一个单词,让我们说“你好”。所以我试过的是:

String t1 = "Hello";
String t2 = "world."
Font serifFont = new Font("Serif", Font.BOLD, 12);
AttributedString as = new AttributedString(t1);
as.addAttribute(TextAttribute.FONT, serifFont); 
as.addAttribute(TextAttribute.FOREGROUND, Color.red);


JOptionPane.showMessageDialog(null, as+t2);

我不熟悉属性文本(),这不起作用。它这样做:

“java.text.AttributedString@479c479cworld”

有没有我错过的步骤?这不是正确的方法吗?有什么建议么?

4

2 回答 2

7

应该可以使用html来解决这个问题,即

String t = "<html><font color=#ffffdd>Hello</font> world!";

有关详细信息,请参阅http://docs.oracle.com/javase/tutorial/uiswing/components/html.html

于 2012-08-17T15:00:15.607 回答
6

您可以Component在消息参数中将 a 传递给 JOptionPane,并将使用它来显示您的消息。

类似 aJLabel或 a 的东西JPanel,上面有标签。

更新

JLabel、JPanel 和 HTML 文本示例

public class TestOptionPane {

    public static void main(String[] args) {

        JLabel label = new JLabel("Hello");
        label.setForeground(Color.RED);

        JOptionPane.showMessageDialog(null, label);

        JPanel pnl = new JPanel(new GridBagLayout());
        pnl.add(createLabel("The quick"));
        pnl.add(createLabel(" brown ", Color.ORANGE));
        pnl.add(createLabel(" fox "));

        JOptionPane.showMessageDialog(null, pnl);

        String text = "<html>The Quick <span style='color:green'>brown</span> fox</html>";
        JOptionPane.showMessageDialog(null, text);

    }

    public static JLabel createLabel(String text) {

        return createLabel(text, UIManager.getColor("Label.foreground"));

    }

    public static JLabel createLabel(String text, Color color) {

        JLabel label = new JLabel(text);
        label.setForeground(color);

        return label;

    }

}

在 Mac 上——

Mac 上的 JOptionPane 示例

在 Windows 上 -

Windows 上的 JOptionPane 示例

于 2012-08-17T15:21:49.390 回答