java -- 路径中包含空格怎么处理
Posted yarightok
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java -- 路径中包含空格怎么处理相关的知识,希望对你有一定的参考价值。
@、使用toURI()方法
String rootPath = this.getClass().getClassLoader().getResource(".").toURI().getPath();
原文:https://www.cnblogs.com/tv151579/p/6220443.html
@、使用URLDecoder.decode方法
String rootPath = this.getClass().getClassLoader().getResource(".").getPath();
这中方式获取到的路径,其中的空格被转换成%20,可通过rootPath = URLDecoder.decode(rootPath ,"utf-8");进行转换。
原文:https://blog.csdn.net/aa__aa1122/article/details/50409342
以上是关于java -- 路径中包含空格怎么处理的主要内容,如果未能解决你的问题,请参考以下文章