Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i need java code to encode URL to avoid special characters such as spaces and % and & ...etc

share|improve this question
3  
this kind of issue is precisely the reason why some site never, ever, use characters that need escaping/encoding in their URLs. StackOverflow seems to be such a site (just look at the clean URL). I think people linking to files in URLs that have, say, spacing characters in their name (and people using spacing characters in files for that matter) deserve to be shot. And those arguing with this fact even more so ;) – SyntaxT3rr0r Dec 31 '10 at 18:25

5 Answers

up vote 20 down vote accepted

URL construction is tricky because different parts of the URL have different rules for what characters are allowed: for example, the plus sign is reserved in the query component of a URL because it represents a space, but in the path component of the URL, a plus sign has no special meaning and spaces are encoded as "%20".

RFC 2396 explains (in section 2.4.2) that a complete URL is always in its encoded form: you take the strings for the individual components (scheme, authority, path, etc.), encode each according to its own rules, and then combine them into the complete URL string. Trying to build a complete unencoded URL string and then encode it separately leads to subtle bugs, like spaces in the path being incorrectly changed to plus signs (which an RFC-compliant server will interpret as real plus signs, not encoded spaces).

In Java, the correct way to build a URL is with the URI class. Use one of the multi-argument constructors that takes the URL components as separate strings, and it'll escape each component correctly according to that component's rules. The toASCIIString() method gives you a properly-escaped and encoded string that you can send to a server. To decode a URL, construct a URI object using the single-string constructor and then use the accessor methods (such as getPath()) to retrieve the decoded components.

Don't use the URLEncoder class! Despite the name, that class actually does HTML form encoding, not URL encoding. It's not correct to concatenate unencoded strings to make an "unencoded" URL and then pass it through a URLEncoder. Doing so will result in problems (particularly the aforementioned one regarding spaces and plus signs in the path).

share|improve this answer
I am trying to write it mysekf .... does it correct ? public static String encode(String str) { StringBuilder sb=new StringBuilder(); for(int i=0;i<str.length();i++){ switch(str.charAt(i)){ case ' ': sb.append("%20");break; case '!': sb.append("%21");break; case '"': sb.append("%22");break; default: sb.append(str.charAt(i)); } } return sb.toString(); } – Adham Dec 31 '10 at 17:56
I did not know that! Thank you for clarifying for me something I assumed I knew. I have deleted my answer; this is the correct answer! – hvgotcodes Dec 31 '10 at 17:59
1  
@adham, no, correct URL encoding is much more than just escaping those three characters. That code may produce correct results for some URLs, but there are many that it won't handle correctly. Just use the URI class. – Wyzard Dec 31 '10 at 18:03
yes i know there many other characters .. but plz can you givs a simplw example for URI class – Adham Dec 31 '10 at 18:08
1  
@EdwardFalk, you're right, URI doesn't seem to convert spaces to '+' in a query string. I couldv'e sworn it did, because I learned about the URI class while resolving space/plus problems in my own code, but that was several years ago and I don't remember the details. Since the plus signs are really part of the application/x-www-form-urlencoded MIME type and not the URI syntax itself, I guess it'd make sense to run (only) the query string through a URLEncoder before putting it into a URI. I'll need to rethink and maybe rewrite my answer, though. – Wyzard Dec 8 '12 at 2:33
show 2 more comments

Simialar question can be found here:

HTTP URL Address Encoding in Java

share|improve this answer

I would echo what Wyzard wrote but add that:

  • for query parameters, HTML encoding is often exactly what the server is expecting; outside these, it is correct that URLEncoder should not be used
  • the most recent URI spec is RFC 3986, so you should refer to that as a primary source

I wrote a blog post a while back about this subject: Java: safe character handling and URL building

share|improve this answer

You can use use the class org.apache.commons.httpclient.util.URIUtil from the commons-httpclient project:

URIUtil.encodeQuery(input);
share|improve this answer

If you don't want to do it manually use Apache Commons - Codec library. The class you are looking at is: org.apache.commons.codec.net.URLCodec

String final url = "http://www.google.com?...."
String final urlSafe = org.apache.commons.codec.net.URLCodec.encode(url);
share|improve this answer

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.