Re: File Upload from IE5.0 using form-data with Japanese characters
Posted By:
sastry_dasigi
Posted On:
Tuesday, March 18, 2003 10:22 AM
Read the content as a BufferedInputStream and write the same to a Byte[] using ByteArrayOutputStream
BufferedInputStream in = new BufferedInputStream(req.getInputStream());
ByteArrayOutputStream baos = new ByteArrayOutputStream(512);
The convert the Byte[] into a String. This should solve ur problem.
Goodluck.