springmvc文件上传,使用它的MultipartHttpServletRequest,tomcat中正常,resion中报错

发布于 2021-12-03 05:16:26 字数 938 浏览 803 评论 2

@红薯 你好,想跟你请教个问题:使用springmvc做文件上传 :

MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request;  
MultipartFile multipartFile = multipartRequest.getFile("filename"); 
String fileName = multipartFile.getOriginalFilename(); 
try { 
binaryStream = multipartFile.getBytes(); 
} catch (IOException e) { 
log.error("MessageUtil.getFileFromWeb.IOException.error:",e); 
} 
tomcat中能正常将request转为MultipartHttpServletRequest,但在resin中则包转换异常?如下:怎么搞搞 
org.springframework.web.util.NestedServletException: Request processing 
failed; nested exception is java.lang.ClassCastException: com.caucho.server.http.HttpServletRequestImpl 
cannot be cast to org.springframework.web.multipart.MultipartHttpServletRequest 


如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

流心雨 2021-12-05 13:32:26

还有哦,保存文件到特定文件夹可以这么写

 File file = new File(“目标文件夹”,"想要保存后的文件名");

multipartFile.transferTo(file);

这样就可以了····

不再见 2021-12-05 11:12:07

在你的spring mvc的配置文件中加上

<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"
p:maxUploadSize="5120000" p:maxInMemorySize="512" />

还要保证有commons-fileupload.jar commons-io.jar这两个jar包

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文