如何在S60操作系统中运行.jar文件?
我想在我的诺基亚 N73 手机上运行 .jar 文件。 我不知道我需要做什么才能做到这一点。 我已经下载了 Sun Java Wireless Kit,但它只连接到它自己的模拟器。
I want to run a .jar file on my Nokia N73 phone. I cannot figure out what I need to do this.
I have downloaded the Sun Java Wireless Kit but that just connects to its own emulators.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须将该文件传输并安装到手机上。
这里有几个选项:
安装诺基亚 PC 套件并使用其应用程序安装程序将 JAR 文件传输到手机。
安装
通过蓝牙发送到手机
将 jar 文件上传到某个文件托管服务并从手机浏览到它
所有这一切都考虑到您的文件是移动 Java 应用程序 (J2ME)
You have to transfer and install that file to the mobile phone.
You have few options here:
Install Nokia PC Suite and use it's Application Installer to transfer JAR file to the phone.
Send it by bluetooth to the phone
Upload the jar file to some file hosting service and browse to it from the phone
All this considering that your file is a Java application for mobile (J2ME)
我会将
以获取 Vitaly Polonetsky 的答案。
作为一般规则,J2ME 应用程序应部署为 .jad 文件,而不是 .jar 文件。
.jad 文件是一个简单且小得多的文本文件,其中包含指向 jar 文件的 http:// 链接,供手机 Web 浏览器下载和安装。 .jad 文件还允许对应用程序进行签名,这样当它尝试访问移动网络或手机内存时,您就可以对其进行无罪推论。
I would add
to Vitaly Polonetsky's answer.
As a general rule, J2ME applications should be deployed as a .jad file, not a .jar file.
a .jad file is a simple, much smaller, text file that contains an http:// link to the jar file, for the phone web browser to download and install. a .jad file also allows the application to be signed so you can extend it the benefit of the doubt when it tries to access the mobile network or your phone's memory.