I have jsp code and servlet I write code in jsp for browsing files of local machiene (files of users)
<input name="f" type="file" style=" -moz-background-size: 50" size="50" maxlength="30" >
when I get the path of file in servlet page
f= new String(request.getParameter("f").getBytes("iso-8859-1"), "UTF-8");
With Firefox and Chrome I can not get the path because of security. Can I change the security setting of browsers to get the path nevertheless?