А Б В Г Д Е Ж З И К Л М Н О П Р С Т У Ф Х Ц Ч Ш Э Ю Я Все примеры | Примеры по пакетам |
|
//Просмотр HTML страницы с помощью JEditorPane
package text;
import java.awt.BorderLayout;
import java.io.IOException;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
public class viewurl {
public static void main(String[] args) throws IOException {
try {
String url = "http: //www.rtindex.ru";
JEditorPane editorPane = new JEditorPane(url);
editorPane.setEditable(false);
JFrame frame = new JFrame();
frame.getContentPane().add(editorPane, BorderLayout.CENTER);
frame.setSize(500, 500);
frame.setVisible(true);
} catch (IOException e) {
}
}
}
|
|
|
|
|