首 页 行业热点 新车 试驾评测 养车用车 车型库

如何成功上传HTML文件

发布网友 发布时间:2022-04-21 03:22

我来回答

1个回答

热心网友 时间:2022-06-17 17:28

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中可以得到绝对路径。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com