Java 2 Micro版本(J2ME)中与互联网连接的问题
我正在尝试通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请记住,这些解决方案不太可能有帮助
,因为 Java ME 没有附带 HTML 渲染小部件。如果您想从 midlet 启动 Google,最好在设备的浏览器中使用
MIDlet.platformRequest()
。Bear in mind that these solutions are unlikely to help with
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()
.请参阅这些链接。这里通过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.