比如有String url = "http:// www.example.com/test.jpg",此时我们用 FileInputStream fis = new FileInputStream(url) 是无法获得该文件资源的,会直接 FileNotFoundException: "http:/ www.example.com/test.jpg"
?
注意异常信息里 http: 后面只有一个 slash,估计是把 http 当盘符处理了……