在 Blackberry 中通过 java 连接到 URL

发布于 2024-12-02 01:54:35 字数 562 浏览 0 评论 0原文

我正在尝试通过 Blackberry 模拟器中的 Java 程序连接到 URL。但它没有连接。

   try { 
        HttpConnection httpConn;
        StreamConnection s;
        s = (StreamConnection)Connector.open("http://www.google.com/");
        httpConn = (HttpConnection)s;
        status = httpConn.getResponseCode();

    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    int t=0;
    if (status == HttpConnection.HTTP_OK)
    {
        add(new RichTextField("Successfully Authorized", Field.NON_FOCUSABLE));
    }

I am trying to connect to a URL through a Java program in Blackberry simulator. But it is not connecting.

   try { 
        HttpConnection httpConn;
        StreamConnection s;
        s = (StreamConnection)Connector.open("http://www.google.com/");
        httpConn = (HttpConnection)s;
        status = httpConn.getResponseCode();

    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    int t=0;
    if (status == HttpConnection.HTTP_OK)
    {
        add(new RichTextField("Successfully Authorized", Field.NON_FOCUSABLE));
    }

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

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

发布评论

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

评论(1

最舍不得你 2024-12-09 01:54:35
s = (StreamConnection)Connector.open("http://www.google.com"+";deviceside=true");

尝试用这条线...
如果您尝试在模拟器中使用 deviceside=true
如果它是在移动设备上进行 wifi 连接,则必须使用 interface=wifi

s = (StreamConnection)Connector.open("http://www.google.com"+";deviceside=true");

try with this line...
If you are trying in emulator means use deviceside=true
If its in a mobile means for wifi connection you have to use interface=wifi

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