Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I map : "10%3A23%3A54+Apr+23%2C+2010+PDT" to something readable in Java ?

Frank

share|improve this question
Could you give as an example of the desired output? – FrustratedWithFormsDesigner Apr 23 '10 at 17:37
This is what you want, correct? 10:23:54 Apr 23, 2010 PDT – Oren Apr 23 '10 at 17:39

1 Answer

up vote 2 down vote accepted

Use URLDecoder(); http://java.sun.com/j2se/1.4.2/docs/api/java/net/URLDecoder.html

share|improve this answer
Yes, you got it ! Thanks. – Frank Apr 23 '10 at 17:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.