up vote 10 down vote favorite
share [g+] share [fb]

When I read the xml through a URL's InputStream, and then cut out everything except the url, I get "http://cliveg.bu.edu/people/sganguly/player/%20Rang%20De%20Basanti%20-%20Tu%20Bin%20Bataye.mp3".

As you can see, there are a lot of "%20"s.

I want the url to be unescaped.

Is there any way to do this in Java, without using a third-party library?

link|improve this question

44% accept rate
Just to be pedantic, there is no such thing as "normal unicode". UTF8 is one of several ways to represent unicode text. But there is no "true" canonical representation. – jalf Mar 8 '09 at 17:07
As Jon and ng said, this has nothing to do with Unicode or UTF-8. You might want to change the title. – Alan Moore Mar 9 '09 at 5:48
feedback

2 Answers

up vote 20 down vote accepted

This is not unescaped XML, this is URL encoded text. Looks to me like you want to use the following on the URL strings.

URLDecoder.decode(url);

This will give you the correct text. The result of decoding the like you provided is this.

http://cliveg.bu.edu/people/sganguly/player/ Rang De Basanti - Tu Bin Bataye.mp3

The %20 is an escaped space character. To get the above I used the URLDecoder object.

link|improve this answer
7  
That method is deprecated. Use URLDecoder.decode(location,"UTF-8"); – Julien Chastang Apr 13 '09 at 2:15
feedback

I'm having problems using this method when I have special characters like á, é, í, etc. My (probably wild) guess is widechars are not being encoded properly... well, at least I was expecting to see sequences like %uC2BF instead of %C2%BF.

Edited: My bad, this post explains the difference between URL encoding and JavaScript's escape sequences: URI encoding in UNICODE for apache httpclient 4

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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