I am using Netty and I need to accept and parse http POST requests. As far as I can tell, Netty doesn't have native POST support, only GET. (This is a rather low-level library that deals with primitive network operations. Using a servlet container that does all this out of the box is not an option.)
If I have the content of the POST request as an array of bytes, what is the fastest and easiest way to parse it in Map of parameters?
I could write this myself, but there should be built-in methods in the JDK that simplify this. And I bet that there are some problems associated with the launch and the angle of view.
source share