在这里,我面临一个问题,例如当我在我的 jsp 中上传文件时,我无法读取完整的文件路径。我只得到文件名。下面是我的代码
<td align="left">File Path :
<input type="file" id="biometricFile_Path" name="biometricFile_Path" />
<span id="uploadsId" class="errorText" >
像这样读取文件路径..
String fileName=request.getParameter("biometricFile_Path");
假设我正在上传路径为“C:\Users\apanigrahi\Desktop\test.xls”的文件,但在通过请求对象获取值时我只得到了 test.xls。