在摇摆应用程序中显示网页

2022-09-02 09:51:34

我想在java swing应用程序中显示一个网页。类似于使用HTML时,但在java Swing中。这是否可能,如果是,如何实现?


答案 1

使用 :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);

答案 2

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

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


推荐