Reputation: 1268
I want to build a very simple webpage in Java. In the webpage I want the user to chose a file from his computer to send to the server, in the server i'm doing some editing on the video and send it back. Is there a way to do this without servlets? What's the simplest / easiest solution to this?
Upvotes: 0
Views: 373
Reputation: 3820
There are many frameworks like struts and spring, which are providing direct interceptors for file-upload and more other features. But it needs some good hands in these frameworks.
If you are new then Servlet would be better.
Edit: For spring http://spring.io/guides/gs/uploading-files/
For struts: http://www.tutorialspoint.com/struts_2/struts_file_uploads.htm
Servlet: http://www.tutorialspoint.com/servlets/servlets-file-uploading.htm
Upvotes: 2