标签: java swing
这是在jframe中添加格式化字符串的最佳方法。 以前我试图添加jlabel
答案 0 :(得分:2)
如果您想在窗口中显示某些文字,是的,向JLabel添加JFrame即可。
JLabel
JFrame
只需创建所需字体的实例,然后使用setFont将其指定给JLabel。
setFont
这是一个代码samle(取自here):
Font font = new Font("Jokerman", Font.PLAIN, 35); JLabel textLabel = new JLabel(textMessage); textLabel.setFont(font);