Java源码文件上传
jsp页面:
<%@
page contentType="text/html;charset=UTF-8" language="java"
%>
<html>
<head>
<title>测试文件上传</title>
<script type="text/javascript">
function urlP(path){
document.getElementById("p").value=path;
}
</script>
</head>
<body>
<form action="对应的路径" method="post">
<input type="file" name="upload" onchange="urlP(this.value)">
<input type="hidden" name="p" id="p">
</form>
</body>
</html>
SpringMVC框架中的对应的Controller方法:
@RequestMapping("/save")
public
void save(MultipartFile upload,String p,HttpServletRequest request) throws
IOException {
if(upload!=null){
String realPath =
request.getSession().getServletContext().getRealPath("/WEB-INF/upload");//先获取项目的发布到的路径,再拼接出上传的文件所存放的路径
FileUtils.copyInputStreamToFile(upload.getInputStream(), new File(realPath,
upload.getOriginalFilename()));//保存文件到指定位置
String filePath=realPath+"\\"+p; //只获取文件名以及扩展名
audition.setAnnuxPath(filePath);
auditionService.save(audition);
}
}
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。