我正在尝试创建一个按钮,其文本有两个不同的字体系列。
我认为,可以使用HTML实现,如本页所述。 http://docs.oracle.com/javase/tutorial/uiswing/components/html.html
我已尝试过以下代码,但它无效。
JButton button = new JButton("<html>Hello <font family=Serif>World</font></html>");
可能是font
代码属性family
错误!
答案 0 :(得分:7)
可能是字体标签属性系列错了!
确实,正确的标签应该是:
<font face="Serif"></font>
看看HTML font tag。所以在你的情况下:
JButton button = new JButton("<html>Hello <font face=\"Serif\">World</font></html>");