14.05.2004, 13:26
hi leute,
wie macht man hier draus ein programm mit jframe?
try {
String url = "http://java.sun.com";;
JEditorPane editorPane = new JEditorPane(url);
editorPane.setEditable(false);
JFrame frame = new JFrame();
frame.getContentPane().add(editorPane, BorderLayout.CENTER);
frame.setSize(width, height);
frame.setVisible(true);
} catch (IOException e) {
}
hier ist die quelle:
http://javaalmanac.com/egs/javax.swing.t...wHTML.html
wie macht man hier draus ein programm mit jframe?
try {
String url = "http://java.sun.com";;
JEditorPane editorPane = new JEditorPane(url);
editorPane.setEditable(false);
JFrame frame = new JFrame();
frame.getContentPane().add(editorPane, BorderLayout.CENTER);
frame.setSize(width, height);
frame.setVisible(true);
} catch (IOException e) {
}
hier ist die quelle:
http://javaalmanac.com/egs/javax.swing.t...wHTML.html