i need java code to encode URL to avoid special characters such as spaces and % and & ...etc
|
|
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 Don't use the |
|||||||||||||||
|
|
Simialar question can be found here: |
|||
|
|
|
I would echo what Wyzard wrote but add that:
I wrote a blog post a while back about this subject: Java: safe character handling and URL building |
|||
|
|
|
You can use use the class
|
||||
|
|
|
If you don't want to do it manually use Apache Commons - Codec library. The class you are looking at is:
|
|||
|
|