I have a problem with a JSP page. I have a type = "file".
<h4>Link:<input type="file" name="linkFile" value=""/></h4>
When in my servlet call the istruction:
System.out.printf(request.getParameter("linkFile"));
the return string is the name of the File and not the path.
There is a way to get a path and not only a file name.
Thanks.