JSP Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 368 Page Views: 

What is URL Encoding and URL Decoding ?



Posted By: Avi Date: 3 November 2010 12:04:58 PM
 Answer:

URL encoding is the method of replacing all the spaces and other extra characters into their corresponding Hex Characters and Decoding is the process of converting all Hex Characters back to their normal form.


Posted By: avibtech


Date: 3 November 2010 12:04:58 PM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image euV8th
Related Questions
JSP : What is servlet exception?

What is servlet exception?

It indicates that there is an exception occurred in the servlet.
Category: JSP Date: 11/3/2010 3:20:59 AM
JSP : How do you pass an init parameter to a JSP?

How do you pass an init parameter to a JSP?

By configuring the DD for passing init parameter to a JSP and that as follows. <servlet> ....
Category: JSP Date: 11/3/2010 2:48:58 AM
JSP : What the code that pass an InitParameter to a JSP?

What the code that pass an InitParameter to a JSP?

<%@ page import="java.util.*" %>
Category: JSP Date: 11/3/2010 12:59:00 AM
JSP : Can Runnable interface be implemented from within the servlet?

Can Runnable interface be implemented from within the servlet?

Yes
Category: JSP Date: 11/2/2010 10:05:59 PM
JSP : How can you print the stack trace of an exception from a  JSP page?

How can you print the stack trace of an exception from a  JSP page?

By creating an object of PrintWriter we can print the stack trace in JSP page. Eg: PrintWriter pw = ....
Category: JSP Date: 11/2/2010 9:32:59 PM