如何使用platformRequest调用网站Url?

发布于 2025-01-02 15:05:40 字数 701 浏览 1 评论 0原文

我正在为 url“http://www.google.com”制作一个 j2me 网站启动器。

我正在使用此代码:

public class LuncherMidlet extends MIDlet {
    boolean Isflage;
    public void startApp() {
        Isflage = false;
        try {
            Isflage = platformRequest("http://www.google.com");
        } catch (ConnectionNotFoundException ex) {
            ex.printStackTrace();
        }
        if(Isflage){
            destroyApp(true);
            notifyDestroyed();
        }
    }
    public void pauseApp() {
    }

    public void destroyApp(boolean unconditional) {
    }
}

此代码工作正常,但是当我尝试关闭移动浏览器时,它会显示一条连接到服务器的消息。如果我说“不”,那么它会再次打开这个 j2me 启动器。它不会从移动浏览器中退出。我的启动器循环到达。
请就这个问题向我提出建议。

I am making a j2me website launcher for an url "http://www.google.com".

I am using this code:

public class LuncherMidlet extends MIDlet {
    boolean Isflage;
    public void startApp() {
        Isflage = false;
        try {
            Isflage = platformRequest("http://www.google.com");
        } catch (ConnectionNotFoundException ex) {
            ex.printStackTrace();
        }
        if(Isflage){
            destroyApp(true);
            notifyDestroyed();
        }
    }
    public void pauseApp() {
    }

    public void destroyApp(boolean unconditional) {
    }
}

This code is working fine, but when I try to close the browser of mobile it shows a message for connect to server. If I say no then it again open the this j2me launcher again. It's not exiting from mobile browser. My launcher reaches in a loop.
Kindly suggest me on this issue.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仅此而已 2025-01-09 15:05:40

当您调用 platformRequest(),它将调用本机应用程序,并且在关闭浏览器时,将调用浏览器的内容。你无法改变它。

When you invoke platformRequest(), it would call to native apps, and on close on browser it is browser's stuff that is being invoked. You can't change it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文