in parsePostData method  HttpUtils.java we have :

String postedBody = new String(postedBytes, 0, len, "8859_1");
return parseQueryString(postedBody);

Does it mean I can never get native character entered in form since the
special chars are lost when String with "8859_1" is created !?

sincerely Olek


Reply via email to