I think there is a typo in the using docs for the fileupload component
(
http://jakarta.apache.org/commons/fileupload/using.html
)
. In the section 'Parsing the request' and then 'The simplest case', the
listing
FileUpload upload = new DiskFileUpload();
I think should read:
FileUpload upload = new FileUpload();
A minor point, but it might confuse novices (like myself).
Apologies if I'm in error on this.
Paul.
DiskFileUpload upload = new DiskFileUpload();
Fixed in CVS; will be included in next site update.