码迷,mamicode.com
首页 > 编程语言 > 详细

java -- 路径中包含空格怎么处理

时间:2019-04-11 19:51:52      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:target   bsp   source   www.   ssl   csdn   res   article   路径   

@、使用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 -- 路径中包含空格怎么处理

标签:target   bsp   source   www.   ssl   csdn   res   article   路径   

原文地址:https://www.cnblogs.com/yarightok/p/10691652.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!