关于Chrome中上传文件得到绝对路径的方法
发布网友
发布时间:2022-05-09 18:08
我来回答
共4个回答
热心网友
时间:2022-05-15 06:50
代码(只粘贴了关键代码):
<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既是上传文件的绝对路径。
热心网友
时间:2022-05-15 08:08
我目前只找到了IE、FF下的解决方法,其他浏览器都暂时没有好的方案。
热心网友
时间:2022-05-15 09:42
我也在找这个答案,关注...
热心网友
时间:2022-05-15 11:34
没办法
继续IE吧