Java 2 Micro版本(J2ME)中与互联网连接的问题

发布于 2024-10-20 04:24:32 字数 310 浏览 0 评论 0原文

我正在尝试通过 J2ME 应用程序连接到互联网。我正在使用 NetBeans 6.8。我正在尝试在 J2ME MIDP 和 Internet 之间建立 HttpConnection。我没有获取在 Connector.open() 方法中作为参数传递的网页。即

conn = (HttpConnection)Connector.open("www.google.com");

运行程序后,我无法在手机中看到谷歌,尽管我的应用程序要求我提供安全的互联网连接。 如果有人知道 J2ME 的 Http 连接,请帮助我。

I am trying to connect to internet through my J2ME application. I am using NetBeans 6.8. I am trying to establish an HttpConnection between my J2ME MIDP and Internet. I am not getting the webpage that i am passing as a parameter in Connector.open() method. i.e

conn = (HttpConnection)Connector.open("www.google.com");

After running the program i cant see google in my mobile, though my application is asking me for a secure internet connection.
If anyone know about Http Connection with J2ME then, please help me.

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

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

发布评论

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

评论(2

白首有我共你 2024-10-27 04:24:32

请记住,这些解决方案不太可能有帮助

我在手机中看不到 Google

,因为 Java ME 没有附带 HTML 渲染小部件。如果您想从 midlet 启动 Google,最好在设备的浏览器中使用 MIDlet.platformRequest()

Bear in mind that these solutions are unlikely to help with

i cant see google in my mobile

because Java ME doesn't come with an HTML rendering widget. If you'd like to launch Google from your midlet, you're best to do it in the device's browser, using MIDlet.platformRequest().

﹏半生如梦愿梦如真 2024-10-27 04:24:32

请参阅这些链接。这里通过J2ME中的例子清楚地描述了如何使用HttpConnection。

使用 platformRequest(String URL) 方法。这将打开设备的默认浏览器。

See these links. Here clearly described how to use HttpConnection with examples in J2ME.

Use the platformRequest(String URL) method. This will open the devices default browser.

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