美文网首页Java
文件下载时FileNotFoundException %20 路

文件下载时FileNotFoundException %20 路

作者: 3anLouYouGu1 | 来源:发表于2020-09-08 11:09 被阅读0次

问题

文件下载时 路径带空格自动转化成%20导致FileNotFoundException系统找不到指定的路径。

image.png image.png

解决方法

  //防止空格路径报错
        try {
            srcPath = URLDecoder.decode(srcPath,"utf-8");
        }catch (UnsupportedEncodingException e){
            e.printStackTrace();
        }

相关文章

网友评论

    本文标题:文件下载时FileNotFoundException %20 路

    本文链接:https://www.haomeiwen.com/subject/dcydektx.html