1

我已经用谷歌搜索了,但没有得到答案。唯一接近我目标的是在 X 秒后使用元重定向,如下所示:

<meta http-equiv="refresh" content="5;url=index2.html">

我需要的是 php 或 html 代码来检测我的 java 小程序是否已在页面上运行,然后重定向到另一个文件地址。

我该怎么做,有人可以给我一个示例代码吗?非常感谢,感谢您的宝贵时间。

4

2 回答 2

3

如果您想从您的小程序重定向,请编写以下代码:

import java.applet.*;
import java.awt.Graphics;
import java.net.MalformedURLException;
import java.net.URL;

public class AppletExample extends Applet
{

public void init() {

try {
getAppletContext().showDocument(new URL("http://www.google.com"), "_blank");//This is new tab/
getAppletContext().showDocument(new URL("http://www.google.com"), "_parent");//This is in the parent tab/
}
catch (MalformedURLException ex) {
System.out.println(ex.getMessage());
}
}

public void paint( Graphics g ) {

g.drawString("Go Google", 0,100);
}

}
于 2013-02-27T08:18:18.430 回答
0

如果您希望从小程序内触发重定向,我会尝试使用showDocument()。它可以这样使用:

this.getAppletContext().showDocument(URL, "_parent");
于 2012-04-26T23:26:58.547 回答