URI HashCode() Example

Returns a hash-code value for this URI.


URIclass HashCode() method example. This example shows you how to use HashCode() method.This method Returns a hash-code value for this URI.

Here is the code:-

/**
 * @Program that Returns a hash-code value for this URI.
 * HashCode.java 
 * Author:-RoseIndia Team
 * Date:-24-jun-2008
 */
import java.net.*;

public class HashCode {
public static void main(String[] argsthrows 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 uri is: " + uri);
        //Returns a hash-code value for this URI.
        System.out.println("Given hash-code value is: " + uri.hashCode());
    }
}

Output of the program:-
 Given uri is: http://girish@tewari.com:8080/mail/?open#inbox
Given hash-code value is: -1714925436

Post Comment
Name:
E-mail:
Contact no :
Comments:
  Refresh Image
Verify Image:
 
 
Your Comment's
 
 
 

HOME | COPYRIGHT | CONTACT US