我正在尝试在Linux系统上读取名称中带有特殊字符的文件。我对操作系统没有任何控制权。
我尝试使用IO和NIO。我不断得到
java.nio.file.InvalidPathException:格式错误的输入或输入包含 无法映射的字符:/ mnt / Au?enr?ckspiegel,elektrisch verstellbar,1,版本-meta.xml
我不能真正在服务器上进行很多更改,我可以做些什么来解决我的应用程序中的问题吗?
System.out.println("Default Charset=" + Charset.defaultCharset()); // US_ASCII
这给我一个带有问号的字符串,用于特殊字符“ /mnt/Au?sen.xml”
Files.list(Paths.get(path)).forEach(file -> {
log.info("file to string: " + file.toString());
String correctedFileName = "";
correctedFileName = new String(file.getFileName().toString().getBytes(StandardCharsets.ISO_8859_1),
StandardCharsets.UTF_8);
log.info("corrected name: " + correctedFileName);
try {
ZipInputStream zipInputStream = new ZipInputStream(Files.newInputStream(Paths.get(correctedFileName)));
ZipEntry entry = zipInputStream.getNextEntry();
while (entry != null) {
Path filePath = Paths.get(unzipLocation, entry.getName());
if (!entry.isDirectory()) {
unzipFiles(zipInputStream, filePath);
} else {
Files.createDirectories(filePath);
}
zipInputStream.closeEntry();
entry = zipInputStream.getNextEntry();
}
} catch (IOException e) {
e.printStackTrace();
}
});
答案 0 :(得分:0)
您可以尝试将文件名解析为URI来解决此类问题。
示例:
File file = new File(path);
URI uri = file.toURI();
String asciiURI = uri.toASCIIString();