Parse a String containing multipart/form-data request body in Java
问题 Problem statement I think the title says it all: I'm looking for the way to parse a String containing the body part of a multipart/form-data HTTP request. I.e. the contents of the string would look something like this: --xyzseparator-blah Content-Disposition: form-data; name="param1" hello, world --xyzseparator-blah Content-Disposition: form-data; name="param2" 42 --xyzseparator-blah Content-Disposition: form-data; name="param3" blah, blah, blah --xyzseparator-blah-- What I'm hoping to obtain