Java Swing JLabel, HTML and custom fonts

℡╲_俬逩灬. 提交于 2019-12-03 08:03:33

To use some font:

<html><head><style type="text/css">
body { font-family: Cool; } </style></head><body>...

The Font you created has to be registered first in the singleton GraphicsEnvironment to be accessible to all:

GraphicsEnvironment genv = GraphicsEnvironment.getLocalGraphicsEnvironment();
genv.registerFont(font);
BenCole

Because StyledDocument extends Document, you may be able use an implementation thereof using JTextField's setDocument() method.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!