import javax.swing.*:
public class Main{
public static void main(String[] args){
JFrame frame = new JFrame("JEditorPane Application");
JEditorPane editPane = new JEditorPane();
try{
editPane.setPage("http://google.com");
}catch(Exception ex){
ex.printStackTrace();
}
frame.add(editPane);
frame.setSize(400, 300);
frame.setLocation(200, 100);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}
No comments:
Post a Comment