URI文件路径-空格问题

论坛 期权论坛 编程之家     
选择匿名的用户   2021-6-2 21:01   3281   0

如C:\Documents and Settings路径包含空格,直接传入到URI中会出错。

正确的做法:通过API将普通文件对象转换为URI路径。

而且,会自动给文件路径前面加上协议:file:/

URI文件路径与File之间的转换,将日志放到用户目录下:

public static void main(String[] args) {
 String home = System.getProperty("user.home");
 File file = new File(home, "logs");
 URI uri = file.toURI();
 String filePath = uri.toString();
 System.out.println(filePath);
 //---file:/C:/Documents%20and%20Settings/user001/logs
}

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:3875789
帖子:775174
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP