springmvc文件上传,使用它的MultipartHttpServletRequest,tomcat中正常,resion中报错
@红薯 你好,想跟你请教个问题:使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
还有哦,保存文件到特定文件夹可以这么写
File file = new File(“目标文件夹”,"想要保存后的文件名");
multipartFile.transferTo(file);
这样就可以了····
在你的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包