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.
我在 Eclipse 中制作了一个 Jar 文件来运行 Applet,并且该程序使用了一个外部 jar 文件(jxl.jar)。当我运行小程序时,它告诉我找不到我要使用的 jxl 文件。
当我制作 jar 文件时,我右键单击项目并选择导出,然后选择 JAR 文件。我在对话框中没有看到包含依赖项的选项。如何确保它包含我的外部 jar 文件,该文件作为外部 Jar 文件添加到我的项目属性中的外部 Java 构建路径中。
有两种方法可以做到这一点:
在“archive”参数中指定依赖的JAR;例如
ARCHIVE="myapplet.jar,jxl.jar"
在您的小程序 JAR 的清单中指定依赖的 JAR;例如在 manifest.mf 文件中添加这一行:
Class-Path: jxl.jar