JButton文本用不同的字体家庭用不同的词

时间:2014-01-10 13:56:26

标签: java html swing fonts

我正在尝试创建一个按钮,其文本有两个不同的字体系列。

我认为,可以使用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错误!

1 个答案:

答案 0 :(得分:7)

  

可能是字体标签属性系列错了!

确实,正确的标签应该是:

<font face="Serif"></font>

看看HTML font tag。所以在你的情况下:

JButton button = new JButton("<html>Hello <font face=\"Serif\">World</font></html>");

图片

enter image description here