与 JAD 文件中的 MIDlet 属性混淆
在 JAD 文件中,“MicroEdition-Profile”可以有多个值,以空格分隔,而“MicroEdition-Configuration”只能有一个值。
根据 JTWI 规范,
- MIDP 的最低要求是 2.0,因此这给我们只有一种选择(MIDP 2.0)来放入 JAD 文件
- CLDC 的最低要求为 1.0,所以这给了我们两种放入 JAD 文件的选择,即: CLDC1.0 和 CLDC2.0
我可以创建一个与 CLDC1.0 和 1.1 兼容的应用程序。为什么 Profile 属性允许有多个值,而 Configuration 属性只允许有一个值?
"MicroEdition-Profile" can have multiple values separated by space in the JAD file, where as "MicroEdtion-Configuration" can have only one value.
According to JTWI specifications,
- Minimum requirement for MIDP is 2.0, so this gives us only one option (MIDP 2.0) to put in the JAD file
- Minimum requirement for CLDC is 1.0, so this gives us two options to put in the JAD file ie: CLDC1.0 and CLDC2.0
I can create an application which is compatible with CLDC1.0 and 1.1. Why are multiple values allowed for Profile attribute but only one value is allowed for Configuration attribute?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MicroEdition-配置指的是系统的最底层部分——JVM等。
MicroEdition-Profile 提供了配置(应用程序生命周期、UI 等)之上的附加软件环境的列表(通常大小为 1)。
有关详细信息,请参阅 当今 Java ME 调查(实际上是 2007 年的,但仍然是一个有用的概述) :
在个人资料上:
MIDP 是移动设备最常见的配置文件,但还有其他配置文件: IMP - MIDP 的一种无头版本(JSR-195);用于数字电视的 DSTB (JSR-242)。
MicroEdition-Configuration refers to the lowest-level part of the system - the JVM and so on.
MicroEdition-Profile gives a list (often of size one) of the additional software environments on top of the configuration (application lifecycle, UI etc.)
For more info see A Survey of Java ME Today (actually from 2007, but a useful overview still):
And on profiles:
MIDP is the most common profile for mobiles, but there are others: IMP - a kind-of headless version of MIDP (JSR-195); and DSTB for digital TV (JSR-242).