Home Java Example Java Io Convert a file name path to url and vice versa in java



Convert a file name path to url and vice versa in java
Posted on: April 16, 2007 at 12:00 AM
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.*;

  import java.net.*;

  public class ConvertFileNamePathToURL{
 
  
public static void main(String[] args)throws IOException{

    BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
  System.out.print("Please enter the File neme : ");
 
 
String str = in.readLine();
 
  
File file = new File(str);
 
  
URL url = null;
 
 
try{
 
 
url = file.toURL();
 
  
System.out.println("URL : "+ url);
 
  
System.out.println("Converting process Successfully");
 
 
}
  
  
catch (MalformedURLException me){
 
  
System.out.println("Converting process error");
  
  
}
 
 
}
 
}

Download this example.

Related Tags for Convert a file name path to url and vice versa in java:
javacfileurlpathconvertvireadrsanameintthisshowfilenameexampleprogramtoramexamwssheiladsceinmntjadmehowintoproxaxampsatishaicempleaandrtrtssavassthshoavhatpleplprndonogro


More Tutorials from this section

Ask Questions?    Discuss: Convert a file name path to url and vice versa in java   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.