0

我的目标是使用带有可执行 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);查找文件存在问题。我知道已提出的相关问题。相关问题如下:

这些问题似乎都没有询问如何在 Apache CLI 中使用可执行 jar。我认为基本问题是我的命令行参数给出的文件路径不能被URL resourceURL = ParseDoc.class.getClassLoader().getResource(fileName);.

请让我知道你在想什么。感谢您的时间。

4

1 回答 1

0

在通过评论讨论后,我也将其发布为答案:

Classloader.getResource()仅获取打包为 Jar 文件的一部分或位于类路径文件夹中的文件。

要读取普通文件,您将使用类似于您的第一个示例的内容,即FileReaderFileInputStream简单地传递 a ,java.io.File具体取决于您尝试使用的库支持的内容。

于 2015-11-26T07:57:15.200 回答