Hi,

Line 545 in org.apache.commons.fileupload.FileUploadBase
is
header = new String(buffer, 0, i - 2);
but should be
header = new String(buffer, 0, i - 2, "ISO-8859-1");
as http headers 'uses' latin-1, and the native java platform charset might be something else.


----
   - Peter Speck


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to