当前位置: 技术问答>java相关
请问如何在APPLET中实现调用显示另外一个html文件
来源: 互联网 发布时间:2017-04-23
本文导语: 如果在java applet中想通过条件判断语句实现调用另外一个IE窗口显示本地html 文件该如何做?谢谢 | public boolean openurl(/tech-qa-java/String avg/index.html) { URL url; try { ...
如果在java applet中想通过条件判断语句实现调用另外一个IE窗口显示本地html 文件该如何做?谢谢
|
public boolean openurl(/tech-qa-java/String avg/index.html)
{
URL url;
try
{
url = new URL("http://www.csdn.net?ok="+avg);
}
catch(MalformedURLException _ex)
{
System.out.println("URL not found.");
return true;
}
getAppletContext().showDocument(url, "_blank");
return true;
}
这个好象只能在applet的继承类中用。我是这么用的。
{
URL url;
try
{
url = new URL("http://www.csdn.net?ok="+avg);
}
catch(MalformedURLException _ex)
{
System.out.println("URL not found.");
return true;
}
getAppletContext().showDocument(url, "_blank");
return true;
}
这个好象只能在applet的继承类中用。我是这么用的。
|
URL u = new URL(/tech-qa-java/…………/index.html);
getAppletContext().showDocument(u);
判断自己加吧
getAppletContext().showDocument(u);
判断自己加吧
|
URL u = new URL(/tech-qa-java/…………/index.html);
getAppletContext().showDocument(u,"参数");
getAppletContext().showDocument(u,"参数");