Had a look at the tutorial which states:
The getParameter method works well for simple servlets, but if you need to retrieve the POST parameters in the order they were placed on the web page or handle multi-part posts, you can write your own code to parse the input stream.
So you are right POST data can be extracted with getParameter, but the tutorial implies this may not work well with Multipart Request
http://java.sun.com/developer/online...v.html#getpost