Upload progress bar Java Servlet?

2019-02-19 00:17发布

问题:

I want to show upload progress bar for my uploads using servlet. I tried Ajax, iFrame technique. The page is not reloading and the file also getting uplaoded. But, progress bar is not coming. Is there any jQuery progress plugin available for java servelts?

Thanks!!

回答1:

I strongly recommend jQuery Uploadify plugin for ajax file uploads. It comes with a progress bar as well. You can find an example on their demo page.

Integration with JSP/Servlet isn't that hard. You can basically keep the servlet code for "regular" file uploads unchanged. I've however ever written a mini tutorial in an answer here (check the "update" part of the answer), you may find it useful as well.