How can I encode dynamic String values in order to create URL instances? I need to replace spaces with %20, accents, non-ASCII characters... ? I tried to use URLEncoder but it also encodes '/' character and if I give a string encoded with URLEncoder to the URL constructor I get a MalformedURLException (no protocol).
|
|
With this said it can be used to encode e.g., query parameters. For instance if a parameter looks like
Unless you have those special needs the URL javadocs suggests using
The following sample
produces the result For further information, see the posts HTTP URL Address Encoding in Java or how to encode URL to avoid special characters in java. EDIT Since your input is a string url, using one of the parameterized constructor of So at this stage we must use a trick to get what you want:
Before you can use this routine you have to
|
|||||||||||||||||
|
|
So what you're saying is that you want to encode part of your URL but not the whole thing. Sounds to me like you'll have to break it up into parts, pass the ones that you want encoded through the encoder, and re-assemble it to get your whole URL. |
|||
|
|