找不到 CSV 文件异常 - CSV Reader
CSV file cannot be Found Exception - CSV Reader
我正在使用 CSVReader 解析来自 LIFERAY REPO.
的 csv 文件
CSVReader reader = new CSVReader(new FileReader(filePath), ',', '"', 1);
List<String[]> allRows = reader.readAll();
String listString = "";
for(String[] row : allRows){
for (String s : row)
{
listString += s + ",";
}
}
此处,filePath 作为文件的本地路径传递。然而,当我经过 Liferay 存储库 的路径时,它向我抛出一个 FileNotFoundException
。我应该添加任何 属性 还是其他内容?我在这里错过了什么?帮忙?
为完整起见添加答案。
根据 this Java 教程,通过 URL 可用的文件需要通过 InputStream
加载。使用它应该使文件可用于 CSV 解析器。
我正在使用 CSVReader 解析来自 LIFERAY REPO.
的 csv 文件CSVReader reader = new CSVReader(new FileReader(filePath), ',', '"', 1);
List<String[]> allRows = reader.readAll();
String listString = "";
for(String[] row : allRows){
for (String s : row)
{
listString += s + ",";
}
}
此处,filePath 作为文件的本地路径传递。然而,当我经过 Liferay 存储库 的路径时,它向我抛出一个 FileNotFoundException
。我应该添加任何 属性 还是其他内容?我在这里错过了什么?帮忙?
为完整起见添加答案。
根据 this Java 教程,通过 URL 可用的文件需要通过 InputStream
加载。使用它应该使文件可用于 CSV 解析器。