i am building a servlet that accepts an image in a POST request. with each post there should be an associated ID. my question is how to pass these two distinct data values in a post, where one is a short string, and another is a large chunk of binary data.
i could have both as post parameters,
id=123
content=...megabytes of binary data...
but i need the flexibility of handling the content as a stream, as it could be quite large. i could also follow the above pattern by parsing the input myself as binary data, which i'd like to avoid. i guess i'd need to parse it character by character looking for the keys. ugly.
am i missing the correct pattern for handling this? thanks.
idas part of post data? And then getting it byrequest.getParameter("id")? – Nishant Feb 14 '11 at 18:40