I am working on a java project that I need in a part of it to allow the user to upload an image from his PC (from a dynamic location). What I need is to get the location or the path of this uploaded image and store it in a string.
For example, if the user uploaded the image from this path "D:imageslollok.png", I need to get this path and save it in a string, so how can I do that?
here is the code (form jsp file):
<form action="selectedHotelUpdatePage.jsp" class="Uplaod-photo">
<input type="file" id="myFile" name="image">
<input type="submit" value="Add" class="add" name="submit">
</form>
<%
String x = request.getParameter("submit");
if(x!=null && x.equals("Add"))
{
String uploaded_image = request.getParameter("image");
String path ="";
// get the path of the uploaded image
}
%>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…