I have been using NIO2 file paths for accessing local file system resources. However, when I try to use the same API for non-local file systems, then I get following exception:
Exception in thread "main" java.nio.file.FileSystemNotFoundException:
Provider "http" not installed. Code snippet can be found below
Path toFileSystem= Paths.get(new URI("http://www.wiley.com"));
I'd like to confirm that there is a way to add http into FileSystemProvider? or is there a good guide I can follow to access non-local schemas through NIO2 API?