如何在框架中打开网页?
(我正在使用netbeans和java)
例如,在html页面中,您可以使用
<frame src="http://www.google.com">
它将在框架中显示谷歌.
我不希望它打开浏览器,只是为了在框架内打开.我怎样才能做到这一点?
解决方法:
这是一个如何使用JEditorPane加载谷歌的快速示例.我希望这是你正在寻找的,但我仍然不能100%确定你想要什么.如果您能提供更多有关您正在做的事情的信息,我将能够为您提供更多帮助.
import javax.swing.*;
public class GetWebPage {
public static void main(String args[]) throws Exception {
JEditorPane website = new JEditorPane("http://www.google.com/");
website.setEditable(false);
JFrame frame = new JFrame("Google");
frame.add(new JScrollPane(website));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
frame.pack();
}
}