Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个关于访问 .jpg 文件的问题,该文件包含在 ant 生成的 java jar 文件中。我的 java 项目包含我使用的 Java 代码和一些 .jpg 文件。我希望能够引用该 .jpg 文件并能够从 jar 复制到目录。
有什么办法吗,还是我总是必须将 jar 放在 jar 文件之外?
您可以将 jar 作为库导入您的项目并访问资源目录或放置 JPG 的任何位置,如果您想直接从项目中引用它。
Jar 文件只是带有清单的 .zip。如果您知道 jpg 在 jar 文件中的位置,您只需解压缩 jar 并将 jpg 复制到所需位置。