In this section, you will learn about the conversion from a Filename path to a URL and vice versa in the java.
String representation of the URL:
This program also converts the Filename Path into URL. It reads a file name and converted into the URL.
toURL():
The toURL()
method of the
File
class is used to convert the file name path into the URL. This is done by
creating the instance of the URL class with the toURL() method of the File
class.
Here is the code of Convert the Filename Path into URL Program :
import java.io.*;
|