tags:

views:

48

answers:

1

How to read files (zip and xml formats) that are delivered to web server from a client application via HTTP POST using java

+1  A: 

commons-fileupload is a library to use on the server to read uploaded files. Read the user guide

Bozho