3

我有以下描述的 jad 文件

MIDlet-Jar-Size: 404071
MIDlet-Jar-URL: test.jar
MIDlet-Name: test
MIDlet-Vendor: Vendor
MIDlet-Version: 1.0.1
MicroEdition-Configuration: CLDC-1.1
MicroEdition-Profile: MIDP-2.0
MicroEdition-test: test

如何MIDlet-Version通过代码?

我试过 System.getProperty("MIDlet-Version"),但它返回 null。

4

2 回答 2

5

从您的 MIDlet 子类

String version = getAppProperty("MIDlet-Version");

摘自:

http://www.developer.nokia.com/Community/Discussion/showthread.php?153128-MIDlet-Version

于 2012-04-17T13:13:57.007 回答
1

System.getProperty("MIDlet-Version") 仅适用于 midlet 或通过从 midlet 实例调用。

于 2012-04-19T06:46:49.497 回答