Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个JLabel其中只有部分文本应该很大(如标题),而另一部分应该是正常大小?当我使用该setFont()方法时,我得到了相同字体的所有内容。
JLabel
setFont()
我怎么能这样做?
您可以为此使用 HTML
label.setText("<html><h1>Heading</h1><br/>Some other text here.</html>"); label.setFont(new Font("Myriad Pro",Font.PLAIN,15));