Java URL handling architecture

Discuss about Java URL handling architecture

Java URL architecture is handled by the java.net.URL object instances. It is utilized to handle the URL string. The methods are of public access specifications which basically reflect the private fields of an object of URL. They also provide the access to the URL strings individual parts. Most of the methods are dedicated for data representation such as equals() to compare two URL objects, hashCode() which can be used to Map the key objects and saveFile() is used to compare two URL objects to see if everything is saved the “ref” field is same .
Brief about java.net.URL class
java.net.URL class - URL is represented to identify or to point to a resource [a web portal / web page] on the WWW...
Brief about java.net.HttpURLConnection class
java.net.HttpURLConnection class - This class inherits from URLConnection. The HTTP specific features are supported by this class....
Java - Brief about java.net.JarURLConnection class
java.net.JarURLConnection class - This class is used to establish a connection to a JAR file or to an entry of the JAR file. The syntax is...
Post your comment