×

URLConnection Class

What is the URL?

URL stands for Uniform Resource Locator, is used to specify addresses on the World Wide Web. A URL relates to the identification of any resource connected to the web.

URL syntax:

Protocol://hostname/other_information(files or directories)

The protocol indicates how the information is transferred from the link. The protocol follows by a colon, two slashes, and then the domain name. The domain name is the computer name on which the resource is located. The particular files or sub-directories are specified after the domain name. The single forward slash is used to separate the directory names.

What is the URLConnection class?

Using the URL, we will get to know about the resources on the internet. To make a connection and send or retrieve the information from those resources, we are going to use a URLConnection class.

Features:

  • URLConnection class is an abstract class whose subclasses makes the connection between the user java application and URL resource on the web.
  • By using this class, we can read and write to and from any resource referenced by a URL object.
  • Once a connection is established and has a URLConnection object, we can use it to read or write or get further information about content length, etc.

To get the object of the URLConnection class:

Since it is an abstract class; hence, we cannot create an object of URLConnection, but we can create a reference for URLConnection by using the URL class:

Syntax:

URL url=new URL(http://www.youtube.com);
URLConnection ucon=url.openConnection(); 

The constructor of the class:

Constructor Description
URLConnection(URL url) It constructs a URLConnection to the specified url.

Method of the class:

Method Description
protected boolean allowUserInteraction(void1) The URL examines if the user interaction is allowed or not, such as popping up an authentication dialogue.
 protected  boolean connected() It specifies whether a communication link to a URL is established or not; true indicates it can be established; false indicates it cannot be established.
protected  boolean doInput() It specifies whether we can read from the specified URL resource or not, true indicates we can read (default value), false indicates we cannot read.
 protected boolean doOutput() It examines whether we can write to a URL resource or not; true indicates we can write. If false-we cannot write.
protected URL url() It specifies the URL object from which the  URLConnection object has been established.
protected  boolean useCaches() Caching means temporary storage of web documents in the local system. It indicates whether caching is allowed or not; true indicates it is allowed and false indicates the protocol always tries to get a fresh copy of a resource.
public Map<String,List<String>>getHeaderFields()   It returns the unmodifiable map of the header field. The key in the map represents a response header field name. The value represents the list of field values.
public InputStream getInputStream()   It returns the InputStream to read to the open connection.
public OutputStream getOutputStream()   It returns the OutputStream to write to the open connection.
public long getLastModified()   It returns the time of the last-modified header field.

Note: As we have seen, URLConnection fields are protected, so they can’t be accessed directly unless our class is in the same package or subclass of URLConnection class.

There are the setter and getter methods to interact with the class fields.

The getter methods are:

Method Description
 public  boolean  getAllowUserInteraction() It returns the value of AllowUserInteraction.  
public  Object getContent() It retrieves the content of the URL .
 public boolean  getDoInput() It returns the value of URLConnection  doInput field.
 public boolean getDoOutput() It returns the value of URLConnection doOutput field.
public URL getURL() It retrieves the URL object to which this URLConnection is connected.
public  boolean  getUseCaches() It returns the value of this URLConnection usecaches  field.
public long getIfModifiedSince() It returns the value of the ifModifiedSince field.
 public String getContentEncoding(void) It returns the value of the content-encoding header field. It is used to compress the media type.
  public Object getContent() It retrieves the contents of the URLConnection.
  public int getContentLength() It returns the size of content associated with resourcea.
  public int getLastModified() It returns the time and date of the last-modification of the resource.
  public String getContentType() It returns a type of content found in the resource.
public long getDate() It returns the time and date of the response.
  public long getExpiration() It returns the expiry time and date of the resource.
public URL getURL() It returns the URL to which URLConnection connects.

The setter methods are:

Method Description
public void  setAllowUserInteraction(boolean allowuserinteraction) It sets the Allowuserinteraction field.
public void setIfModifiedsince(long ifmodifiedsince) It sets the IfModifiedSince field.
public void setUseCaches(Boolean usecaches) It sets the value of the URLConnection usecaches  field.
public void setDoInput(boolean doinput) It sets the value of URLConnection doInput field.
public void setDoOutput(boolean  dooutput) It sets the value of URLConnection doOutput field.

Example 1: Using the getInputStream() to read  from the  open connection.

import java.io.*;
import java.net.*;
class URLConn
{
public static void main(String s4[])throws Exception
{
URL u1=new URL("https://www.tutorialandexample.com/java-tutorial");
URLConnection u2=u1.openConnection();
//getInputStream() returns the InputStream to read from the connection.
InputStream is=u2.getInputStream();
int i;
while((i=is.read())!=-1)
{
System.out.print((char)i);
}
}
} 

The output of the above program:

Using the getInputStream()

Example 2: Using BufferedReader with InputStreamReader to increase the speed to read from the open connection.

import java.net.*;
import java.io.*;
import java.net.URL;
import java.net.URLConnection;
public class URLConn {
public static void main(String s1[]) throws Exception {
URL  url1 = new URL("http://www.google.com/");
URLConnection yc =url1.openConnection();
BufferedReader in = new BufferedReader(new InputStreamReader(yc.getInputStream()));
String inputLine;
while ((inputLine = in.readLine()) != null)
System.out.println(inputLine);
in.close();
}
} 

The output of the above program:

Using BufferedReader

We get all the data of a webpage using the getInputStream() method, so the data is not shown  completely here.

Example 3: Using the various methods:

import java.net.URLConnection;
import java.net.URL;
import java.io.*;
import java.util.*;
public class URLConn
{
public static void main(String s[])
{
try
{
URL url=new URL("http://google.com");
URLConnection urlcon=url.openConnection();
InputStreamReader insr=new InputStreamReader((InputStream)urlcon.getContent());
BufferedReader br=new BufferedReader(insr);
String str;
while((str=br.readLine())!=null)
{
System.out.println(str);
}
br.close();
//returns the value of allowuserinteraction to specify  user interaction  allow or not .
System.out.println("getAllowUserInteraction()"+urlcon.getAllowUserInteraction());
//returns the value of doinput field to specify whether we can read from specified URL or not.
System.out.println("getDoInput()"+urlcon.getDoInput());
//returns the value of the doutput field to specify whether we can write to a URL resource or not.
System.out.println("getDoOutput()"+urlcon.getDoOutput());
//returns the value of the ifmodifiedsince field.
System.out.println("getIfModifiedSince()"+urlcon.getIfModifiedSince());
//returns the value of the usecaches  to indicates caching allow or not.
System.out.println("getUseCaches()"+urlcon.getUseCaches());
//returns the URL of the connection
System.out.println("getURL()"+urlcon.getURL());
//It returns the value of the content encoding header field. The content encoding entity header use to compress the media-type.
System.out.println("getContentEncoding()"+urlcon.getContentEncoding());
//returns the date and time of last modified  resource
System.out.println("getLastModified()"+urlcon.getLastModified());
/*it returns key and value pair of unmodifiable map in which key represents response header fields name and value represents the list of field values.*/
Map> map=urlcon.getHeaderFields();
for(Map.Entry> me:map.entrySet())
{
String key=me.getKey();
List valueList=me.getValue();
System.out.println("\n key:  "+key);
for(String value:valueList)
{
System.out.println(" value :"+value+" ");
}
}
}
catch(Exception e)
{
e.printStackTrace();
}
}
} 

The output of the above program:

getInputStream() method

URLConnection has two subclasses

1.HttpURLConnection

2.JarURLConnection

HttpURLConnection class:

It is the http specific URLConnection class, works for http protocol that relates to the application-level protocol for distributed, collaborative, hypermedia information systems. The http is a generic and stateless protocol.

syntax:

URL url=new URL(“https://www.tutorialandexample.com/java-tutorial”);
HttpURLConnection hurl=(HttpURLConnection)url.openConnection(); //Typecasting to HttpURLConnection. 

Example: The code given below returns the key and value for the nth header field.

import java.io.*;
import java.net.*;
public class URLConn{
public static void main(String s1[]){
try{
URL url=new URL("https://www.tutorialandexample.com/java-tutorial");
HttpURLConnection hurl=(HttpURLConnection)url.openConnection();
for(int i=1;i<=8;i++){
//getHeaderField returns the value for the nth header field.
//getHeaderFieldKey returns the key for the nth header field.
System.out.println(hurl.getHeaderFieldKey(i)+" = "+hurl.getHeaderField(i));
}
hurl.disconnect();
}catch(Exception e){System.out.println(e);
}
}
}

The output of the above program:

HttpURLConnection class

JarURLConnection class:

 JAR bundles all the files in one package. Java has the mechanisms to get the information from a jar file in which the JarURLConnection class is mostly used for that purpose. It is a URLConnection to a JAR file, an entry, or directory in a JAR file.

syntax:

jar:!/{entry}

Explanation:

Jar URL starts with a general URL that points to the location of the jar archive. Then “jar:” protocol is prefixed, and finally, “!/” and path to the file inside the jar archive is suffixed at the end of this URL.

Example:

import java.io.IOException;
import java.net.JarURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.security.cert.Certificate;
import java.util.Arrays;
import java.util.Map.Entry;
import java.util.jar.Attributes;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;
import java.util.jar.Manifest;
public class URLConn
{
private final static String JAR ="jar:file:/C:/Users/ABCD/Desktop/Jar" + "/first.jar!/first.class";
public static void main(String s5[]) throws Exception
{
try {
//creates a URL relates to a jar file.
URL url = new URL(JAR);
//creates a jar URL connection object.
JarURLConnection jurl = (JarURLConnection) url.openConnection();
//It returns the URL to jar file for this connection.
System.out.println("The Jar file URL is : " + jurl.getJarFileURL());
//It returns the jar file for the connection.
JarFile jarFile = jurl.getJarFile();
System.out.println("The Jar Entry is : " + jurl.getJarEntry());
//It returns the manifest for this connection. Manifest specifies the special file that has the information of the files packaged in a JAR file.
Manifest man = jarFile.getManifest();
System.out.println("Manifest :" + man.toString());
//It returns the JAR entry object for the connection. Entry point is usually the class having the method public static void main(String s[])
JarEntry jentry = jurl.getJarEntry();
System.out.println("Jar Entry : " + jentry.toString());
//It returns attributes for this connection if URL points to jar entry file.
Attributes attr = jurl.getAttributes();
System.out.println("Attributes : " + attr);
//It returns the main attributes of the connection.
Attributes attr1 = jurl.getMainAttributes();
for (Entry e : attr1.entrySet())
{
System.out.println(e.getKey() + " " + e.getValue());
}
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}

The output of the program:

JarURLConnection class

Related Topics

Palindrome Partitioning problem in Java

In this article, you will be acknowledged about partitioning of the palindrome. It can be done in many ways. This article makes sure every method is discussed. Palindrome If a string remains...

6 minutes read.

Lambda expressions in Java

A brief introduction to Lambda expression in java In this topic, we will discuss the lambda expression in java. A lambda expression in Java is an enhanced version of an anonymous...

13 minutes read.

Why main method is static in Java

The method serves as the entry point for Java programmes or simply the point from which the programme begins to run. As a result, it is one of the most...

4 minutes read.

Java Math log() Method

The log() method of Math class returns the natural logarithmic value for the specified double argument. Syntax: public static double log(double a) Parameters: The parameter ‘a’ represents the value. Return Value: The log() method returns the...

1 minute read.

How to Create Singleton Class in Java

In this tutorial, we will discuss the singleton class and how to create it. Introduction Java is a purely object-oriented programming language. It consists of classes and objects. But Singleton is one...

4 minutes read.

Java Externalization

What is Externalization in Java? Externalization is a concept that is advanced to serialization. Serialization is a concept where we can transfer an object from our JVM ( Java virtual machine...

3 minutes read.

Menu Driven Program in Java

Menu Driven Program in Java The menu-driven program in Java is a program that displays a menu and then takes input from the user to choose an option from the displayed...

3 minutes read.

FizzBuzz Program in Java

FizzBuzz is a well-known children's game. This game helps children learn division. The FizzBuzz game is becoming a popular programming question, appearing frequently in Core Java interviews. This section will...

3 minutes read.

Highest precedence in Java

In Java, the operator is the first thing that springs to mind when discussing precedence. The order in which the operators in an expression are evaluated is controlled by a...

3 minutes read.

Multithreading in Java

Multithreading is a specialized form of multitasking. It is responsible for executing more than one task at a time of a single program, and each task is a separate thread. A program...

8 minutes read.

Difference Between Access Specifiers and Modifiers in Java

Java employs access modifiers to restrict a class's data members, member functions, and constructor. Access modifiers are essential when creating Java program and applications. Access modifiers in Java include: defaultpublicprotectedprivate Default Access Modifiers Without...

4 minutes read.

Snake and Ladder Problem in Java

Find the smallest number of dice throws necessary to reach the destination or last cell from the source or first cell on a snake and ladder board. Essentially, the player...

6 minutes read.

Java Generate UUID

What java Generate UUID? A 128-bit long value that is universally unique serves as the basis for the terms UUID (Universally Unique Identifier) and GUID (Globally Unique Identifier). Hexadecimal (octet) digits...

5 minutes read.

Differences between Byte Code and Machine Code

This tutorial will discuss the differences between Byte Code and Machine Code. Before that, let's try to know what byte and machine code is. Introduction Every computer has a set of instructions...

4 minutes read.

How to Convert Decimal to Binary in Java

How to Convert Decimal to Binary in Java There are two methods to convert Decimal to Binary. Using toBinaryString() method Using user-defined logic Using Integer.toBinaryString() The toBinaryString() is a static method of Integer...

2 minutes read.

Java Integer valueOf() method

The valueOf() method of Java Integer class returns an Integer object holding the specified int value. The second method returns an Integer object holding the specified String value. The third syntax returns...

2 minutes read.

Byte to Hex in Java

Java exclusively uses byte data types to store in a byte array, which is an array. Each component of a byte array has a default value of 0. Hex String -...

3 minutes read.

How to Calculate Week Number From Current Date in Java?

The WeekFields class's weekOfMonth() method is utilized to return the field for access the week of a month based on this WeekFields. If the first day of the month is a...

3 minutes read.

Conditional operator in Java

In Java, there are around eight operators, and among them, three operators are used to evaluate the condition and decide the Result based on the Result of the evaluated condition. Below...

4 minutes read.

Static vs Non-Static in Java

A static method can access and update the value of a static data member. The static keyword is mostly used in Java for memory management. The static keyword can be...

6 minutes read.