黑莓外部库问题(找不到模块)

发布于 2024-09-11 19:35:35 字数 288 浏览 4 评论 0原文

我正在使用日食。当我添加外部 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜味拾荒者 2024-09-18 19:35:35

我的解决方案是(对于 Eclipse 插件):

  1. 生成/获取 *.jar 文件。
  2. 使用 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 中的

  1. :将预先验证的 *.jar 添加到构建路径: (右键单击项目 -> 库 -> 添加 JAR)
  2. 导出 *.jar: (右键单击项目 -> 库-> 订单和导出 -> 检查您的 *.jar)
  3. 运行应用程序,它现在应该可以工作

您可以编写 ant 脚本来自动化此过程

干杯,
中号

my solution is (for eclipse plugin):

  1. Generate/get *.jar file.
  2. 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:

  1. Add preverified *.jar to build path: (Right click on project -> Libraries -> Add JARs)
  2. Export *.jar: (Right click on project -> Libraries ->Order and Export -> check your *.jar)
  3. Run application, it should work now

You can write ant script to automate this process

Cheers,
M

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文