Convert Between a URL and a URI in Java

Description

The following code shows how to convert Between a URL and a URI.

Example


//from  w ww  .ja va  2 s  .  c om
import java.net.URI;
import java.net.URL;

public class Main {
  public static void main(String[] argv) throws Exception {

    URI uri = null;
    URL url = null;

    // Create a URI
    uri = new URI("file://D:/1.4/Ex1.java");
    System.out.println(uri);
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    Network »




NetworkInterface
URI
URL
HTTP
HTTP Read
IP
Socket
UDP
URL Encode