BlackBerry:如何读取 JAD 并提取版本号
我知道该方法
ApplicationDescriptor.currentApplicationDescriptor();
,但我的目标是下载另一个 JAD 并将其版本号与当前应用程序版本进行比较。最好/最简单的方法是什么?有没有办法从一个简单的字符串构造一个ApplicationDescriptor?
I know the method
ApplicationDescriptor.currentApplicationDescriptor();
But I aim to download another JAD and compare it's version number to the current applications version. What is the best/easiest way to do this? Is there a way to construct an ApplicationDescriptor from a simple String?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从当前应用程序 JAD 获取版本:
从下载的 JAD 获取版本作为字符串:
比较版本字符串:
感谢任何更正和改进。请随意编辑并与我分享您的经验。
Get the version from the current Apps JAD:
Get the version from a downloaded JAD as String:
Compare the version strings:
Any corrections and improvements are appreciated. Feel free to edit and share your experiences with me.