Upload Files to Database

How to upload files to database using JSP?

Questions by Nusraths9

Showing Answers 1 - 1 of 1 Answers

chandrashekar

  • May 15th, 2017
 

We can upload file into data base using form encrypt type multipart concept

Code
  1. span style="color: #0000ff;">"post" action="uploadServlet" enctype="multipart/form-data">

  2. <input type="file" name="photo" size="50"// upload files size up to 16MB

  3.   Part filePart = request.getPart("photo");//obtains the upload file part in this multipart request

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions