Java HttpURLConnection .getResponseMessage ()

Syntax

HttpURLConnection.getResponseMessage() has the following syntax.

public String getResponseMessage()    throws IOException

Example

In the following code shows how to use HttpURLConnection.getResponseMessage() method.


//from  w  ww .  ja va2s .  c  o  m
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.Date;

public class Main{
  public static void main(String args[]) throws Exception {
    URL url = new URL("http://www.google.com");
    HttpURLConnection httpCon = (HttpURLConnection) url.openConnection();

    System.out.println("Response Message is " + httpCon.getResponseMessage());

 }
}

    




















Home »
  Java Tutorial »
    java.net »




CookieManager
CookiePolicy
CookieStore
DatagramPacket
DatagramSocket
HttpCookie
HttpURLConnection
InetAddress
JarURLConnection
MulticastSocket
ServerSocket
Socket
SocketAddress
URI
URL
URLConnection
URLDecoder
URLEncoder