📅  最后修改于: 2023-12-03 15:31:32.300000             🧑  作者: Mango
Java Swing-JEditorPane是Swing库中的一个组件,可以用于显示文本、HTML和其他格式的文档。
import javax.swing.*;
import java.awt.*;
public class JEditorPaneDemo extends JFrame {
public JEditorPaneDemo() {
setTitle("JEditorPane Demo");
setSize(300, 200);
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
JEditorPane editorPane = new JEditorPane();
editorPane.setContentType("text/html");
editorPane.setText("<html><body>Hello World!</body></html>");
editorPane.setEditable(false);
JScrollPane scrollPane = new JScrollPane(editorPane);
add(scrollPane, BorderLayout.CENTER);
setVisible(true);
}
public static void main(String[] args) {
new JEditorPaneDemo();
}
}
这个例子创建了一个窗口,其中包含一个JEditorPane用于显示HTML内容。
JEditorPane是一个非常有用的Swing组件,可以用于显示文本和HTML内容。它可以很容易地与其他Swing组件和布局管理器组合使用,以实现各种用户界面。