Encoder tildes(~) for URL in Java
Description
The following code shows how to encoder tildes(~) for URL.
Example
/* w w w . j a v a 2s .c o 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", "UTF-8"));
}
}
The code above generates the following result.