0

在这里,我面临一个问题,例如当我在我的 jsp 中上传文件时,我无法读取完整的文件路径。我只得到文件名。下面是我的代码

  <td align="left">File Path  :
  <input type="file" id="biometricFile_Path" name="biometricFile_Path" /> 
  <span id="uploadsId" class="errorText" >&nbsp; 


像这样读取文件路径..

String fileName=request.getParameter("biometricFile_Path");

假设我正在上传路径为“C:\Users\apanigrahi\Desktop\test.xls”的文件,但在通过请求对象获取值时我只得到了 test.xls。

4

1 回答 1

0

据我所知,基于安全限制,您无法在服务器端获取完整路径名。但是某些版本的 IE 提供了完整的路径。

于 2012-11-14T07:15:34.080 回答