我有一个products.jar文件。里面有一个班com.ClassA
。项目的结构就像
products
|--test
|--com
|--ClassA.java
|--dependencies
|---inputs.txt
在eclipse中,ClassA.java
通过以下路径访问inputs.txt
文件并且工作正常
private static final String PROPERTIES_FILE_PATH = "test/dependencies/inputs.txt";
test
包位于java构建路径中 - >来源
但是当我将此项目导出为products.jar
时,我发现在jar文件中没有test
目录。 jar文件的根目录中有两个目录com
和dependencies
。因此,当我尝试通过命令行执行ClassA
(驻留在jar文件中)时,我收到以下异常:
JUnit version 4.8.2
java.io.FileNotFoundException: test/dependencies/inputs.txt (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.java:137)
at java.io.FileInputStream.<init>(FileInputStream.java:96)
因此,在发现jar文件中没有导出test
目录后,我将ClassA.java中文件的路径更改为dependencies/inputs.txt
。它在eclipse中不起作用,但我认为它可以在jar中工作,因为jar文件在classpath中,dependencies
文件夹位于jar文件的根目录,因此java启动程序将能够找到{{1 }}文件夹然后dependencies
文件。
但不幸的是,它也无法正常工作。
答案 0 :(得分:6)
您不能使用FileInputStream
来读取JAR中包含的文件 - 它不再是文件。 FileInputStream
仅适用于实际的磁盘文件。
您需要使用Class.getResourceAsStream
(javadoc)阅读资源,例如
InputStream stream = getClass().getResourceAsStream("/dependencies/inputs.txt");
您不使用test
前缀,因为它不在JAR文件结构中。
答案 1 :(得分:2)
FileInputStream()不会在jar中读取,只读取文件系统上的文件。使用 .getClass()。getResourceAsStream(resourcename)或 .getClass()。getClassLoader()。getResourceAsStream(resourcename)
有关class getResourceAsStream和classloader getResourceAsStream()
的javadoc的更多信息