Windows Mobile 上的 IBM J9 互联网连接

发布于 2024-09-08 08:56:36 字数 227 浏览 3 评论 0原文

我需要在带有 Windows Mobile 5 的符号手持设备中管理 JavaME 应用程序上的 GPRS 连接(自动启动互联网连接或要求用户选择某个连接)。我正在使用 Java 1.3 开发此应用程序并使用 IBM J9 作为 jvm 。 我该如何处理这个问题?

仅当我在启动 java 应用程序之前打开 Internet Explorer 并访问某些内容时,连接才会开始,之后 JavaME 应用程序正常连接到互联网。

I need to manage the GPRS connection on a JavaME application (start an internet connection automatically or ask user to select some connection) in a symbol handheld device with Windows Mobile 5. I'm developing this application with Java 1.3 and using IBM J9 as jvm.
How can I deal with this?

The connection starts only when i do open internet explorer and access something before launch the java application, after that the JavaME application connects to internet normally.

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

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

发布评论

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

评论(2

握住你手 2024-09-15 08:56:36

你还没有完全搞砸——但也差不多了。您将必须编写一些 C++ 并使用 JNA(不是 JNI)接口来管理您的连接。通过 CLDC 管理 GPRS 连接是完全不可能的。祝你好运。

You're not totally screwed here - but close. You're going to have to write some C++ and use a JNA (not JNI) interface to manage your connection. It's straight-up impossible to manage a GPRS connection through CLDC. Good luck.

百变从容 2024-09-15 08:56:36

您可以尝试使用名为 的工具mortscript。它是一种适用于 Windows Mobile 的简单脚本语言。它具有连接和断开默认互联网连接的功能。尝试一下,它是免费的,您可以用它做很多其他漂亮的事情,而无需编写任何 C++ 代码。

您可以使用 mortscript 连接到互联网,然后启动您的 java 程序。但是,如果您想从 Java 代码中进行连接,则需要一个简单的 JNI 函数来调用脚本上的 ShellExecuteEx,或者

除此之外,如果您还没有开始开发,我强烈建议您使用 .NET反而。

You can try using a tool called mortscript. It is a simple scripting language for windows mobile. It has functions for connecting and disconnecting the the default internet connection. Try it, it's free and you can do lots of other nifty stuff with it without writing any C++ code.

You can use mortscript to connect to the internet then launch your java program. However, if you want to connect from within your java code, you'll need a simple JNI function to call ShellExecuteEx on the script or

Aside from that, if you haven't started developing yet, I'd highly recommend you use .NET instead.

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