我有一个 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”
有没有我错过的步骤?这不是正确的方法吗?有什么建议么?