Home > OS >  I’m trying to use getPart() to upload blob image into mysql in jsp dynamic web app
I’m trying to use getPart() to upload blob image into mysql in jsp dynamic web app

Time:07-16

Part part =request.getPart(); I receive an error that can not find symbol getPart(String)

CodePudding user response:

You will recieve an error as the method getPart requires a String

  • Related