gpt4 book ai didi

java - Java 小程序运行后重定向?

转载 作者:行者123 更新时间:2023-11-29 06:00:26 24 4
gpt4 key购买 nike

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

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

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

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

最佳答案

如果你想从你的小程序重定向然后写下面的代码:

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);
}

}

关于java - Java 小程序运行后重定向?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10342754/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com