我需要构建一个包含冒号(:)的路径。实际上,该路径不是Windows / Linux中的文件夹/目录。这只是JCR回购的途径。下面的代码在路径包含冒号时给出InvalidPathException
import java.nio.file.Path;
import java.nio.file.Paths;
public class TestCLass {
public static void main(String[] args) {
final Path path = Paths.get("com", "repo:access","resource");
//final Path path = Paths.get("com", "repoaccess","resource"); //Output - com/repoaccess/resource
System.out.println(path);
}
}
例外
Exception in thread "main" java.nio.file.InvalidPathException: Illegal char <:> at index 8: com\repo:access\resource
at sun.nio.fs.WindowsPathParser.normalize(WindowsPathParser.java:182)
at sun.nio.fs.WindowsPathParser.parse(WindowsPathParser.java:153)
at sun.nio.fs.WindowsPathParser.parse(WindowsPathParser.java:77)
at sun.nio.fs.WindowsPath.parse(WindowsPath.java:94)
at sun.nio.fs.WindowsFileSystem.getPath(WindowsFileSystem.java:255)
at java.nio.file.Paths.get(Paths.java:84)
是否有用于访问冒号(:)和其他任何特殊字符的API?
答案 0 :(得分:0)
据我所知,Windows和Linux都不允许在文件名中添加“:”。这就是Java为此类路径/文件名抛出InvalidPathException
的原因。没有API可以解决文件系统施加的限制。
答案 1 :(得分:-1)
首先,您是否可以在系统中创建一个名称为“ abc:etc”的文件夹。如果没有,那么这不是一个有效的问题。