InvalidPathException异常问题

Posted mubawa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了InvalidPathException异常问题相关的知识,希望对你有一定的参考价值。

为了跨平台,java在获取路径的时候常常要照顾UNIX类型OS的情绪,会在路径的最前方放置一个斜线“/”,这个斜线在Windows中出现的话,常常就是这个样子:

C:SoftwareassetsTemplate.xls

再将它们导入到java.nio.file.Path类中处理时就是抛出java.nio.file.InvalidPathException异常,其错误消息:

java.nio.file.InvalidPathException: Illegal char <:> at index 2: C:SoftwareassetsTemplate.xls

如何避免这样的错误取决于你是如何获得路径信息的,这种错误常常发生在当时用ClassLoader的getResource函数时,我本人曾经的错误代码如下:

public static String getCurrentPath(Class<?> classas) {
    return classas.getClassLoader().getResource(".").getPath();
}

这段代码返回的路径就是包含斜线的字符串,这显然让今后的路径处理变得复杂,而良好且跨平台的处理代码应该是如下:

public static String getCurrentPath(Class<?> classas) {
    try {
        return Paths.get(classas.getClassLoader().getResource(".").toURI()).toString();
    } catch (URISyntaxException e) {
        return StringUtils.EMPTY;
    }
}

它先将路径转换到URI,在用Paths类库转换成本地路径对象,再导出到字符串类型。

以上是关于InvalidPathException异常问题的主要内容,如果未能解决你的问题,请参考以下文章

java.nio.file.InvalidPathException:格式错误的输入或使用国家字符时输入包含不可映射的字符

从 hello-world 创建 scala 项目时出现 InvalidPathException

java.nio.file.InvalidPathException: Trailing char < > at index 10: res/raw/?

InvalidPathException: Malformed input or input contains unmappable ; maven-assembly-plugin maven j

Druid出现DruidDataSource - recyle error - recyle error java.lang.InterruptedException: null异常排查与解决(示例代

异常Maxwell异常 Exception in thread "main" net.sf.jsqlparser.parser.TokenMgrError: Lexical e(代