java.nio.file.Path for URL?
Java7 附带了本地文件的缺省路径实现。是否有 URL 的路径实现?
例如,我应该能够使用以下代码复制远程资源:
Path remote = Paths.get(new URI("http://www.example.com/foo/bar.html"));
Path local = Paths.get(new URI("/bar.html"));
Files.copy(remote, local);
目前,这会抛出 .我可能可以自己实现这一点,但我宁愿不重新发明轮子。java.nio.file.FileSystemNotFoundException: Provider "http" not installed