Can be obtain a File object from URL? I try something like
URL url = new URL(urlString);
File file = Paths.get(url.toURI()).toFile();
but it obtained exception
java.nio.file.FileSystemNotFoundException: Provider "http" not installed
or https... depending on the protocol used. Assume that urlString contain a valid address.
Exist an altenative to get it the File object from URL or I'm on wrong way?