How can I create JEditorPane for a specific document type?

Apache NetBeans Wiki Index

Note: These pages are being reviewed.

You need to find the right EditorKit first and then set it on your JEditorPane. Here is an example showing how to do that for a java file.

EditorKit kit = CloneableEditorSupport.getEditorKit("text/x-java");

JEditorPane jep = new JEditorPane();
jep.setEditorKit(kit);

Applies to: NetBeans 6.x

Platforms: All