黑莓外部库问题(找不到模块)
我正在使用日食。当我添加外部 jar (import it.sauronsoftware.ftp4j.*;) 时,似乎没问题,我通过右键单击项目和属性来引用外部 jar。当我实例化 FTPclient 对象并在模拟器中运行时,我收到“找不到模块”。
另一个论坛上的有人建议创建一个新库并向其中添加 jar,然后在我的主 bb 项目中引用该库作为依赖项。这样做的缺点是我的库必须与编译的 bb 应用程序一起安装,但我不想要这个。有没有另一种方法可以使用黑莓插件将第三方库导入到 eclipse 中,从而使这项工作正常进行?
谢谢
I am using eclipse. When I add an external jar (import it.sauronsoftware.ftp4j.*;) it seems to be ok, I reference the external jar by right clicking project and the properties. When I instantiate an FTPclient opbject and run in the simulator I get "module not found".
Somebody on a different forum suggested creating a new library and adding the jar to it, then reference this library as a dependency in my main bb project. The downside to this is that I the library must be installed along with the compiled bb app and I dont want this. Is there another way to import third party libs into eclipse with blackberry plugin that will make this work?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的解决方案是(对于 Eclipse 插件):
使用 preverify 工具预验证 *.jar 文件(位于 JDE_DIR\components\bin 中):
preverify -classpath {jde.home}\lib\net_rim_api.jar {output.file} -d {output.dir}
上述命令将在以下位置生成预验证的 *.jar {output.dir}\output\
: eclipse 中的
您可以编写 ant 脚本来自动化此过程
干杯,
中号
my solution is (for eclipse plugin):
Preverify *.jar file using preverify tool (it's in JDE_DIR\components\bin):
preverify -classpath {jde.home}\lib\net_rim_api.jar {output.file} -d {output.dir}
above command will produce preverified *.jar in: {output.dir}\output\
in eclipse:
You can write ant script to automate this process
Cheers,
M