hai everybody am unable to find full path of file. am using following code to import the file. in internet explore am getting full path, but in firefox(version-8) i'm getting only the file name instead of the entire file path.please help me to find full path of file..
<td> <input type="file" id="importExtruderFile" name="importExtruderFile"/> </td>
String getFilePath = request.getParameter("importExtruderFile");
File file = new File(getFilePath);
thank you