|

Personal, Standard, Enterprise
|
MimeParser (ID #24194)
OOP-Reserch Corporation
OOP MimeParser is the Java API for file upload by Servlets/JSP. This Java API parses the InputStream of the HTTP POST request with multipart/form-data encoding. At that time, it checks:
* The file size of the file to be uploaded
* The width/height of the image file (JPEG, GIF or PNG) to be uploaded
* The mime-type of the file to be uploaded
* The binary contents of the file to be uploaded
After it parses multipart/form-data, Servlet/JSP can save the binary contents of the uploaded files on the server side. Servlet/JSP can take the full control over:
* The directory where the uploaded file will be saved
* The file name by which the uploaded file will be saved
In addition, Servlet/JSP can access:
* The binary contents of the uploaded files
* The text contents of the uploaded files
* The original file names on the client side
* The mime-types of the uploaded files
* The values of the text parameters in the CGI FORM

MimeParser home page
|