4

我正在研究 Java 7。我正在尝试使用 HTML 标记来格式化文本。我将文本传入

JTextField text = new JTextField();
text.setText("<html><body><p>The program performs encryption operations on the following ciphers: </p></body></html>");

但是程序也会打印 HTML 标签。该文本示例只是一个示例。可能是什么问题?干杯

4

1 回答 1

11

JTextField支持 HTML。您可以JTextPane改用:

JTextPane text = new JTextPane();
text.setContentType("text/html");
text.setText("<html><body><p>The program performs encryption operations on the following ciphers: </p></body></html>");
于 2012-09-01T22:05:30.913 回答