URI ToURL() Example

Started by VelMurugan, Dec 24, 2008, 10:38 PM

Previous topic - Next topic

VelMurugan

URI ToURL() Example

Constructs a URL from this URI.

URIclass ToURL() method example. This example shows you how to use ToURL() method.This method Constructs a URL from this URI.

Here is the code:-

/**
* @Program that Constructs a URL from this URI.
* ToURL.java
* Author:-RoseIndia Team
* Date:-24-jun-2008
*/
import java.net.*;

public class ToURL {
public static void main(String[] args) throws Exception {
        String scheme = "http";
        String userInfo = "girish";
        String host = "tewari.com";
        int port = 8080;
        String path = "/mail/";
        String query = "open";
        String fragment = "inbox";
        URI uri = new URI(scheme, userInfo, host, port, path, query, fragment);
        System.out.println("Given new URI is: " + uri);
        // Constructs a URL from this URI.
            System.out.println("Given URL from this URI is: " + uri.toURL());
    }
}


Output of the program:-

Given new URI is: http://girish@tewari.com:8080/mail/?open#inbox
Given URL from this URI is: http://girish@tewari.com:8080/mail/?open#inbox

Source : codingdiary