我的目标是使用带有可执行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();
}
}
我使用mvn clean compile assembly:single
编译带有依赖项的jar文件然后引发以下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);
在哪里寻找文件存在问题。我知道有人问过的相关问题。相关问题如下:
这些问题似乎都没有询问如何在Apache CLI中使用可执行jar。我认为基本问题是URL resourceURL = ParseDoc.class.getClassLoader().getResource(fileName);
找不到我的命令行参数给出的文件路径。
请让我知道你的想法。谢谢你的时间。
答案 0 :(得分:0)
通过评论讨论后,我也将此作为答案发布:
Classloader.getResource()
仅提取打包为Jar文件的一部分或位于classpath文件夹中的文件。
要阅读普通文件,您可以使用第一个示例,例如FileReader
或FileInputStream
,或者只是传递java.io.File
,具体取决于您尝试使用的库支持的内容