I use Apache POI to read from an Excel file to get the paths for docx, doc, xls, and xlsx files, decrypt the file content and build a new path to read the data back.
The problem now is when path has french character, like following:
/Valérie/CASES.doxcs
is = new FileInputStream(path);
This line will have the following exception:
(No such file or directory)
at java.io.FileInputStream.open(Native Method)
It works well for other path, is that mean Apache POI does not support non-English character or is something else wrong? Anyway to fix this?