delight-fileupload
A simple wrapper for Apache Commons FileUpload for allowing it to work with Netty and other IO servers.
Part of the Java Delight Suite.
Dependency
Just add the following dependency to your projects.
<dependency>
<groupId>org.javadelight</groupId>
<artifactId>delight-fileupload</artifactId>
<version>[insert latest version]</version>
</dependency>
This artifact is available on Maven Central and BinTray.
Usage
First obtain the raw data of the request in the framework you are using:
byte[] data = ... posted data
String contentType = ... header "Content-Type"
Then call customized FileUpload to process the request:
FileItemIterator iterator = FileUpload.parse(data, contentType);
Finally, process the items in the multipart request:
while (iter.hasNext()) {
FileItemStream item = iter.next();
if (item.isFormField()) {
... some fields in the form
} else {
InputStream stream = item.openStream();
// work with uploaded file data by processing stream ...
}
}