File: toURI() : File « java.io « Java by API
- Java by API
- java.io
- File
File: toURI()
import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;
public class Main {
public static void main(String args[]) throws MalformedURLException {
File file = new File("The End");
URL url2 = file.toURI().toURL();
System.out.printf("Good url %s%n", url2);
}
}
Related examples in the same category