在swing应用程序中显示一个网页

时间:2012-05-15 13:24:55

标签: java swing

我想在java swing应用程序中显示一个网页。类似于使用HTML时,但在Java Swing中。这是可能的,如果是的话,怎么样?

2 个答案:

答案 0 :(得分:22)

使用JEditorPane

JEditorPane jep = new JEditorPane();
jep.setEditable(false);   

try {
  jep.setPage("http://www.yoursite.com");
}catch (IOException e) {
  jep.setContentType("text/html");
  jep.setText("<html>Could not load</html>");
} 

JScrollPane scrollPane = new JScrollPane(jep);     
JFrame f = new JFrame("Test HTML");
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.getContentPane().add(scrollPane);
f.setPreferredSize(new Dimension(800,600));
f.setVisible(true);

答案 1 :(得分:6)

您可能需要查看http://java.dzone.com/articles/web-browser-your-java-swing

JxBrowser允许您通过将浏览器嵌入到swing应用程序中来显示任何网页。