1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
import javax.swing.event.*;
import java.awt.*;
import java.io.*;
public class EditorPaneSample {
public static void main(String args[]) throws
IOException {
JFrame frame = new JFrame("EditorPane HTML");
Container content =frame.getContentPane();
JEditorPane editor = new JEditorPane("file:///hasnaouiwafa/Java/index.html");
editor.setEditable(false);
JScrollPane scrollPane = new JScrollPane(editor);
content.add(scrollPane);
frame.setSize(640, 480);
frame.setVisible(true);
}
} |