https://issues.apache.org/bugzilla/show_bug.cgi?id=45406





--- Comment #7 from Ran Rubinstein <[EMAIL PROTECTED]>  2008-07-16 08:09:21 PST 
---
(In reply to comment #6)

I was under the impression that only URL parameters that are part of the query
string have to be encoded, and that when decoding, only %-encoded parts of the
url are affected by the charset.
This is how the Java URLDecoder works:

String s = "http://a.com?utf16param=%D7%05";;
s = URLDecoder.decode(s,"UTF-16LE");
System.out.println(s);

out:
http://a.com?utf16param=ח

(


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to