我的目标是使用带有可执行 jar 文件的 Apache CLI 来读取文本文件,执行字符串操作,然后写入 CSV。您将在终端中执行该工具,如下所示:
$ java -jar my-tool-with-dependencies.jar -i input.txt -o output.csv
我已经为此功能编写了测试,并且这些测试正在通过。测试输入文本文件位于src/test/resources/
. 以下测试通过:
@Test
public void testWordockerWriteCsvFileContents() {
// Make sure the csv file contains contents
Wordocker w = new Wordocker();
String intext = "/textformat/example_format.txt";
String outcsv = "/tmp/foo.csv";
w.writeCsvFile(intext, outcsv);
try {
Reader in = new FileReader(outcsv);
Iterable<CSVRecord> records = CSVFormat.DEFAULT.parse(in);
for (CSVRecord record : records) {
assertTrue(record.toString().length() > 0);
}
} catch(FileNotFoundException e){
assertTrue(false);
} catch(IOException e) {
assertTrue(false);
}
File file = new File(outcsv);
if (file.exists()) {
file.delete();
}
}
我们使用依赖项编译我的 jar 文件,mvn clean compile assembly:single
然后引发以下 FileNotFoundException:
// Get file from resources folder
URL resourceURL = ParseDoc.class.getClassLoader().getResource(fileName);
if (resourceURL == null) {
throw new FileNotFoundException(fileName + " not found");
}
file = new File(resourceURL.getFile());
这使我相信在哪里ParseDoc.class.getClassLoader().getResource(fileName);
查找文件存在问题。我知道已提出的相关问题。相关问题如下:
- 可执行 jar 中 Class.getResource() 和 ClassLoader.getResource() 的奇怪行为
- Class.getResource() 和 ClassLoader.getResource() 有什么区别?
- MyClass.class.getClassLoader().getResource(“”).getPath() 抛出 NullPointerException
- this.getClass().getClassLoader().getResource(“…”) 和 NullPointerException
- getResourceAsStream 返回 null
这些问题似乎都没有询问如何在 Apache CLI 中使用可执行 jar。我认为基本问题是我的命令行参数给出的文件路径不能被URL resourceURL = ParseDoc.class.getClassLoader().getResource(fileName);
.
请让我知道你在想什么。感谢您的时间。