I develop on J2ME test App, I can install in my old nokia using Bluetooth, IR, Cable.

But there is any way of sending this App using SMS or other network based protocol?

有帮助吗?

解决方案

The only thing you can do via SMS is to send a URL to your MIDlet's .jad file.

其他提示

You can put your jad and jar in the internet. Create a wap (or web) page that can be accessed by the device. In the wml (html) file, there must be a link that points to your jad file like this:

<a href="app_location/MyJMEApp.jad">This is my JME App!</a>

Normally, you put the jad and jar file in one folder and so you have this in the jad file:

MIDlet-Jar-URL: MyJMEApp.jar

But if not, then you have to indicate it in the value of MIDlet-Jar-URL. If you open the wap (web) page on your device and click on the link, the device will download and install the MyJMEApp.jar.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top