this.getClass().getClassLoader().getResource("")遇到有中文路径的解决方法
使用this.getClass().getClassLoader().getResource("").getPath() 获取中文名的文件路径,并向mysql中插入二进制数据,但是发生了错误,打印路径,发现路径是乱码,就感觉应该是
编码的问题,百度查了下,找到别人提供的解决方法,经测试,可行。
http://blog.csdn.net/lzzyok/article/details/7886914
在使用类似这样:
- this.getClass().getClassLoader().getResource("").getPath()
来获取文件路径时,里面的路径空格会被“%20”代替,这时候如果你用这个获取到的包含“%20”的路径来new一个File时,会出现找不到路径的错误。
于是有以下官方解决方法:
- URI uri = new URI(url.toString());
- FileInputStream fis = new FileInputStream(uri.getPath())
但有另一种解决方法:
- configPath = java.net.URLDecoder.decode(configPath,"utf-8");
于是乎,问题解决了……