As far as I know, multipartRequest is for the Http form posting using the enctype="multipart/form-data". It looks like you try to load and print the local files on the servlet server. If that's the case, regular file IO package can hanlde it. Otherwise, you need to have a form like the following to submit your request:
<form method="post" enctype="multipart/form-data"
action="/servlet/yourservlet">
<input type=file name="">
</form>
Hope this helps
Originally posted by Tony Kemp:
Sorry about that, let me try again with code tages: