• SpringMVC 后台怎么获取前台jsp页面中file中的文件


    SpringMVC默认是关闭fileupload功能的,开启该能够并验证文件上传,需要做如下几件事情: 第一:打开SpringMVC的文件上传功能: ***-servlet.xml中配置: 配置后,当SpringMVC接受到multipartRequest的时候,就会把HttpServletRequest转为MultipartHttpServletRequest类型, 第二步:创建上传文件的file.jsp:

    一定不要漏掉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包)
  • 相关阅读:
    置顶
    hbck2的一些用法
    常用的jvm一些监控命令
    HBCK2修复hbase2的常见场景
    HBase2版本的修复工具HBCK2
    使用python写入excel
    CentOS-Linux下面的xfs磁盘配额
    使用podman容器部署飞儿云框架
    在docker中安装宝塔
    在CentOS7中安装Docker并开一台CentOS8的容器
  • 原文地址:https://www.cnblogs.com/zuge/p/5439381.html
Copyright © 2020-2023  润新知