Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.9k views
in Technique[技术] by (71.8m points)

jsp - How to get the location of the uploaded image in java?

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
        }
    %>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...