NanoHttpd / nanohttpd

Tiny, easily embeddable HTTP server in Java.

Home Page:http://nanohttpd.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About parsing post FormData

protosskai opened this issue · comments

Here for other types of form data,The code chose to save it in a temporary file.
I want to know what is the point of this?
Why not convert the value of this field to a byte array and pass it directly to the user?
Or to be compatible with Hashmap in the code?

Here for other types of form data,The code chose to save it in a temporary file.
I want to know what is the point of this?
Why not convert the value of this field to a byte array and pass it directly to the user?
Or to be compatible with Hashmap in the code?