- 积分
- 321
- 实力分
- 点
- 金钱数
- 两
- 技术分
- 分
- 贡献分
- 分
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
在用CertifyMidlet生成mobilezip认证的时候,发现用jad生成器生成的jad文件,格式有所不对,导致不能生成认证
用文本编辑器查看如下:
Manifest-Version: 1.0
MicroEdition-Configuration: CLDC-1.1
MIDlet-Name: MobileZip
Ant-Version: Apache Ant 1.6.1
Created-By: 1.4.2_02-b03 (Sun Microsystems Inc.)
MIDlet-Icon: /res/appicon.png
MIDlet-Vendor: Softex Digital Pvt Ltd(chinese by zxlch)
MIDlet-Permissions: com.siemens.mp.io.File.readwrite,javax.microeditio
n.io.Connector.file.write,javax.microedition.io.Connector.file.read----------此行有问题
MIDlet-1: MobileZip,/res/appicon.png,com.softexdigital.MobileZip.Mobil
eZip------------------------------------此行有问题
MIDlet-Version: 1.0.0 LG1
MicroEdition-Profile: MIDP-2.0
MIDlet-Jar-Size: 90606
MIDlet-Jar-URL: MobileZip.jar
Nokia-MIDlet-Category: Game
修改为以下格式(删去上面两行的多余回车符):
Manifest-Version: 1.0
MicroEdition-Configuration: CLDC-1.1
MIDlet-Name: MobileZip
Ant-Version: Apache Ant 1.6.1
Created-By: 1.4.2_02-b03 (Sun Microsystems Inc.)
MIDlet-Icon: /res/appicon.png
MIDlet-Vendor: Softex Digital Pvt Ltd(chinese by zxlch)
MIDlet-Permissions: com.siemens.mp.io.File.readwrite,javax.microedition.io.Connector.file.write,javax.microedition.io.Connector.file.read
MIDlet-1: MobileZip,/res/appicon.png,com.softexdigital.MobileZip.MobileZip
MIDlet-Version: 1.0.0 LG1
MicroEdition-Profile: MIDP-2.0
MIDlet-Jar-Size: 90606
MIDlet-Jar-URL: MobileZip.jar
Nokia-MIDlet-Category: Game
发现可以生成认证的jad了,手机上显示可信任程序,使用成功
希望对机油有所帮助 |
|