android:将外部JAR文件添加到android中
我们正在制作一个需要将一种文件格式转换为另一种文件格式的应用程序。 我不确定我们是否可以将一个 JAR 文件添加到我们的 android 项目中,在该文件中我们开发代码以将文件格式转换为我们所需的文件格式。
We are making an application that needs to convert one file format to another.
I am not sure whether we can add a JAR file in which we develop the code to convert the file format to our required file format, to our android project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够在主项目目录中创建一个名为 libs 的文件夹,并将要使用的任何 jar 添加到此文件夹中。如果在模拟器上测试期间遇到类未找到异常或类似的情况,您可以将 jar 添加到构建路径配置的顺序和导出选项卡中。
You should be able to create a folder called libs in your main project directory and add any jar that you want to use to this folder. If during testing on the emulator you get a class not found exception or something like that you may add the jar in the order and export tab of your build path configuration.