Send a Cookie to an HTTP Server in Java

Description

The following code shows how to send a Cookie to an HTTP Server.

Example


//from  ww w  .j ava2 s. c  o  m

import java.net.URL;
import java.net.URLConnection;

public class Main {
  public static void main(String[] argv) throws Exception {
    URL url = new URL("http://www.server.com");
    URLConnection conn = url.openConnection();

    conn.setRequestProperty("Cookie", "name1=value1; name2=value2");

    conn.connect();
  }
}




















Home »
  Java Tutorial »
    Network »




NetworkInterface
URI
URL
HTTP
HTTP Read
IP
Socket
UDP
URL Encode