我有这个 html 代码:
<html>
<head>
<title>File Upload Example</title>
</head>
<body>
<form action="uploadsuccess.jsp" enctype="multipart/form-data" method="post">
Please specify a file:<br/>
<input type="file" id="theFile" name="theFile" size="40"/><br/>
<input type="submit" value="Submit"/>
</form>
</body>
</html>
然后我尝试了这个:我浏览了一个具有完整文件路径的文件:C:\abc.txt。然后在物理硬盘中,我更改了文件名(或将其移动到其他地方)。在文件输入文本框仍然显示“C:\abc.txt”的情况下,我单击了提交按钮,结果是根本无法到达uploadsuccess.jsp 。在 Firefox 浏览器中,选项卡只是重新加载了一点,但页面没有。
当文件未找到或不存在时,浏览器似乎拒绝发布数据。
所以我想知道如何验证输入的文件路径是否存在。