Posted On: Feb 22, 2018
URL Encoding means the changing of data into CGI. It is done to circumvent any type of issue while it is going over the network. URL coding is schemed by removing the white spaces and put any escape symbols. Thus, the special characters are removed. To encode any string java.net.URLEncoder.encode (String str, String Unicode) is used and to decode the URL java.net.URLDecoder.decode (String str, String Unicode) is used. Let's take an example to simplify it. To encode 'Ravi's data' it is changed into 'Ravi/24d+data'.
Never Miss an Articles from us.
It is designed by the Java software company. It is used to extend the ability of the server...
Web Server is the connection between the HTTP and HTML...
If any HTTP brings the same result every time then it means it is idempotent...