annotate lib/org.apache.commons.fileupload_1.2/readme.txt @ 0:db87c1b7eb6d

initial
author dwinter
date Wed, 03 Nov 2010 12:18:46 +0100
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
db87c1b7eb6d initial
dwinter
parents:
diff changeset
1 -------------------------
db87c1b7eb6d initial
dwinter
parents:
diff changeset
2 Apache Commons FileUpload
db87c1b7eb6d initial
dwinter
parents:
diff changeset
3 -------------------------
db87c1b7eb6d initial
dwinter
parents:
diff changeset
4
db87c1b7eb6d initial
dwinter
parents:
diff changeset
5 "The Commons FileUpload package makes it easy to add robust, high-performance,
db87c1b7eb6d initial
dwinter
parents:
diff changeset
6 file upload capability to your servlets and web applications.
db87c1b7eb6d initial
dwinter
parents:
diff changeset
7
db87c1b7eb6d initial
dwinter
parents:
diff changeset
8 FileUpload parses HTTP requests which conform to RFC 1867, "Form-based File
db87c1b7eb6d initial
dwinter
parents:
diff changeset
9 Upload in HTML". That is, if an HTTP request is submitted using the POST
db87c1b7eb6d initial
dwinter
parents:
diff changeset
10 method, and with a content type of "multipart/form-data", then FileUpload can
db87c1b7eb6d initial
dwinter
parents:
diff changeset
11 parse that request, and make the results available in a manner easily used by
db87c1b7eb6d initial
dwinter
parents:
diff changeset
12 the caller."
db87c1b7eb6d initial
dwinter
parents:
diff changeset
13
db87c1b7eb6d initial
dwinter
parents:
diff changeset
14 For more information:
db87c1b7eb6d initial
dwinter
parents:
diff changeset
15 http://commons.apache.org/fileupload/