FileSystems.getFileSystem throws FileSystemNotFoundException at line ZipFileSystemProvider.java:171
What should i do to overcome that ? Thanks in advance...
public void copy(File sourceFile){
Path zipfile = Paths.get(sourceFile.getAbsolutePath());
URI uri = URI.create("jar:" + zipfile.toUri());
FileSystem fs = FileSystems.getFileSystem(uri);
Path nf = fs.getPath("new.txt");
.....
}