Ankit
Ankit

Reputation: 2256

Storing Image in WebApplication Folder

I am sending image to a Servlet using html form. I am getting only filename but wants the full path of the image. Second, i want to store this image in web application images folder.

Upvotes: 0

Views: 370

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1039498

I am getting only filename but wants the full path of the image

For security reasons it is impossible to get the full path to the image on the client computer. This information is never sent to the server.

As far as the second part of your question is concerned about storing the uploaded image on the server, there are many articles out there illustrating this.

Upvotes: 1

Related Questions