在Java中,我们可以使用javax.swing
包中的JEditorPane
类来创建一个基本的HTML编辑器,以下是一个简单的示例:
(图片来源网络,侵删)
import javax.swing.*; import java.awt.*; public class HtmlEditor { public static void main(String[] args) { SwingUtilities.invokeLater(new Runnable() { @Override public void run() { createAndShowGUI(); } }); } private static void createAndShowGUI() { JFrame frame = new JFrame("HTML Editor"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JEditorPane htmlEditor = new JEditorPane(); htmlEditor.setContentType("text/html"); JScrollPane scrollPane = new JScrollPane(htmlEditor); frame.getContentPane().add(scrollPane, BorderLayout.CENTER); frame.setSize(500, 300); frame.setVisible(true); } }
在这个例子中,我们首先创建了一个JFrame
窗口,然后创建了一个JEditorPane
对象,并设置其内容类型为"text/html",这样它就可以接收和显示HTML代码了,接着,我们创建了一个滚动窗格(JScrollPane
),并将其添加到窗口的内容窗格中,我们设置了窗口的大小,并使其可见。
本文来自投稿,不代表重蔚自留地立场,如若转载,请注明出处https://www.cwhello.com/443900.html
如有侵犯您的合法权益请发邮件951076433@qq.com联系删除