We would like to know how to convert File path to a URL.
/*from ww w . j av a 2 s . c o m*/ 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); } }
The code above generates the following result.