MultipartParser class for uploading files
843840Mar 19 2002 — edited Apr 9 2002 Hi ,
I was using Oreilly's MultipartRequest class to parse multipart-form data, since it Stores the file on FileSystem I'm trying to use the new Class MultipartParser .One of the problems I'm facing while using this class is it requires me to get FilePart as soon as I get it while doing parsing. So could you tell me how to go about to use the FilePart data after completing the parsing process.What I meant by this is I want to refer to FilePart after I parse the full request. I tried using InputStream.mark() method and use InputStream.reset() method ,but it didn't work.Is there a way by which I can parse the request and refer back to FilePart of that request .
Appreciate your help..
Thanks..