Encode equal sign for URL in Java

Description

The following code shows how to encode equal sign for URL.

Example


    //from w  w w. j a v a2  s.  co m

import java.net.URLEncoder;

public class Main {

  public static void main(String[] args) throws Exception {
    System.out.println(URLEncoder.encode("A=B=C=D=E", "UTF-8"));
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    Network »




NetworkInterface
URI
URL
HTTP
HTTP Read
IP
Socket
UDP
URL Encode