views:

57

answers:

1

Where can I find a good tutorial on the Commons FileUpload usage that walks me through a Java web application that features a file uploading? single and multiple file uploading

Thanks

+1  A: 

Since you tagged the question with spring-mvc, I would recommend to use Spring's builtin multipart resolver in combination with Commons FileUpload to ease all the processing.

Check the MultipartResolver chapter of the Spring MVC reference (2.0 here and 3.0 here) for details and code examples.

BalusC
thanks I'll have a look at that
Yaw Reuben