开发者

Who actually installs the Java MIDlet file

开发者 https://www.devze.com 2023-02-08 19:00 出处:网络
Suppose i have TicTacToe.jar (Collection of class files and resource files) & TicTacToe.jad (Descriptor File) files,

Suppose i have TicTacToe.jar (Collection of class files and resource files) & TicTacToe.jad (Descriptor File) files,

Who and H开发者_运维问答ow does this installation from jar file to some machine dependant files like (.sis and all)

Platform independant Platform Dependant JAR File <----------------> (???????) <----------> .sis Files


Although your question is not 100% clear I will try to answer the question as I understood it.

First JME is supported by several platforms while sys files belong to Symbian only. Second, JME application distribution really consists of 2 files: JAR and JAD. The installation starts from JAD. Java installer (built in into the platform) detects JAD, reads its data, asks user to confirm his/her wish to really install the application and then downloads JAR file and "installs" it.

The process may start from HTTP request (so called OTA - over the air installation), from memory card, from bluetooth. Bottom line: the java installer takes responsibility to install the midlet.

0

精彩评论

暂无评论...
验证码 换一张
取 消