当前位置: 技术问答>java相关
如何用java实现超级联接?
来源: 互联网 发布时间:2015-05-31
本文导语: 用html实现超级联接挺简单的,但是怎样用java来实现真的挺难的! | You have to use getAppletContext().showDocument (new URL("http://www.whatever.com")); or getAppletContext().showDocument (new URL("h...
用html实现超级联接挺简单的,但是怎样用java来实现真的挺难的!
|
You have to use getAppletContext().showDocument
(new URL("http://www.whatever.com"));
or
getAppletContext().showDocument
(new URL("http://www.whatever.com"),"HTML frame ID");
(new URL("http://www.whatever.com"));
or
getAppletContext().showDocument
(new URL("http://www.whatever.com"),"HTML frame ID");
|
URLConnection