1

我在使用 j2me 和 eclipse 和 eclipseme 时遇到了这个问题:当我开始运行应用程序时,它什么也没做,我得到了这个结果......

Warning: Running JAM, Ignoring all other options (but "-Xheapsize", and OTA flags if provided)
Running with storage root C:\Users\adham\j2mewtk\2.5.2\appdb\MediaControlSkin
Running with locale: Arabic_Saudi Arabia.1256
Running in the identified_third_party security domain
The MIDlet suite was not found.
Execution completed.
3390735 bytecodes executed
24 thread switches
1665 classes in the system (including system classes)
17352 dynamic objects allocated (519548 bytes)
1 garbage collections (0 bytes collected)
4

1 回答 1

1

关键部分似乎是:

The MIDlet suite was not found

检查 jad 文件的路径。然后检查 jad 中 jar 文件的路径(通常它只是 jar 文件的名称,并且您将它们放在同一个文件夹中)。接下来,检查 jar 文件中的 Manifest 文件。检查它是否标识了您的 jar 中的 Midlet 类。接下来检查 Midlet 类是否实际上是 MIDlet 的子类。

于 2011-05-29T18:38:22.607 回答