我正在研究 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 标签。该文本示例只是一个示例。可能是什么问题?干杯
我正在研究 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 标签。该文本示例只是一个示例。可能是什么问题?干杯
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>");