springmvc怎么读取文件

springmvc怎么读取文件,第1张

SpringMVC默认是关闭fileupload功能的,开启该能够并验旅虚证文件上传,需要做如下几件事情:

第一:打开SpringMVC的文件上传功能:

***-servlet.xml中配置:

<bean id="multipartResolver"

class="org.springframework.web.multipart.commons.CommonsMultipartResolver">

<property name="maxUploadSize" value="100000"/>

<property name="maxInMemorySize" value="10240" />

</bean>

配置后,当SpringMVC接受到multipartRequest的时候,就会把HttpServletRequest转为MultipartHttpServletRequest类型,

第二步:创建上传文件的file.jsp:

<form action="dynamicFields.action?method=uploadFile" method="post" enctype="multipart/form-data"><input type="file" name="myfile" id="空镇汪myfile" value="" /><br/><input type="submit" value="确认提交"></form>

一定斗仔不要漏掉enctype="multipart/form-data",否则web容器认为这不是一个MultipartRequest请求,

会报错org.springframework.web.multipart.MultipartException: The current

request is not a multipart request。

第三步:Controller层创建代码:

@RequestMapping(params = {"method=uploadFile"})

public ModelAndView uploadFile(@RequestParam("myfile") MultipartFile myfile,

HttpServletRequest request, HttpServletResponse response) throws Exception {

if(!myfile.isEmpty()){

logger.info(myfile.getName())

byte[] bs= myfile.getBytes()

logger.info(new String(bs))

}

return null

}

部署web应用运行后,能够看到控制台中打印出上传文件的内容,BINGO搞定(SpringMVC依赖common-fileupload.jar,需要加载该jar包)

这个Word文档在哪?在服务器上?在用户自己帆胡扮电脑上?如果在服务器上只能先让用户下载,用户决定是否打开;如果在用户自做段己电脑上,因安全考滤,你得通过ActiveX之类的控件态灶才能做到打开此文档的目的


欢迎分享,转载请注明来源:内存溢出

原文地址:https://54852.com/yw/8238785.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-04-14
下一篇2023-04-14

发表评论

登录后才能评论

评论列表(0条)

    保存