Encode asterisks for URL in Java
Description
The following code shows how to encode asterisks for URL.
Example
//www .ja v a 2 s. c om
import java.net.URLEncoder;
public class Main {
public static void main(String[] args) throws Exception {
System.out.println(URLEncoder.encode("A*B*C", "UTF-8"));
}
}
The code above generates the following result.