如何成功上传HTML文件

如题所述

HTML中使用input type="file"上传文件时,代码中只能得到文件的名称,而有些特殊的需要要求得到上传文件的绝对路径,为此采用Javascript实现得到文件的绝对路径。
<form name="thisform" method="post"
action="<%=request.getContextPath()%>/movieManage.do" id="thisform" enctype="multipart/form-data">

<input type="file" name="theFile" onchange="document.getElementById('theFilePath').value=this.value"/>

<input type="hidden" id="theFilePath" name="theFilePath" value="">

</form>

注意:要有enctype="multipart/form-data"

Action代码:
String filePath = request.getParameter("theFilePath");

filePath既是上传文件的绝对路径。

浏览器中测试:
Firefox和IE中可以得到绝对路径。
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答