Format a URL by encoding the characters.
ASCII characters 'a' through 'z', 'A' through 'Z', and '0' through
'9' remain the same. So do the unreserved characters - _ . ! ~ * ' ().
All other ASCII characters are converted into the form "%ab"
where ab is the hex value of the character code.
Note: we used to have our own implementation, but this is now just a
wrapper for
java.net.URLEncoder .
since: ivata masks 0.4 (2002-09-24) author: Colin MacLeod author: colin.macleod@ivata.com version: $Revision: 1.4 $ |