`

springmvc上传

 
阅读更多

第一步,导入spring jar(commons-logging-1.0.4.jar、上传组件commons-fileupload.jarcommons-io.jar)

 

第二步,项目配置文件web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
	http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

	<filter>
		<filter-name>CharacterEncodingFilter</filter-name>
		<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
		<init-param>
			<param-name>encoding</param-name>
			<param-value>GBK</param-value>
		</init-param>
	</filter>
	<filter-mapping>
		<filter-name>CharacterEncodingFilter</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>

	<servlet>
		<servlet-name>dispatcherServlet</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<init-param>
			<param-name>contextConfigLocation</param-name>
			<param-value>/WEB-INF/springmvc-servlet.xml</param-value>
		</init-param>
		<load-on-startup>1</load-on-startup>
	</servlet>
	<servlet-mapping>
		<servlet-name>dispatcherServlet</servlet-name>
		<url-pattern>/</url-pattern>
	</servlet-mapping>
</web-app>

 

第三步,springMVC配置文件springmvc-servlet.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="
		http://www.springframework.org/schema/beans 
		http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
	    http://www.springframework.org/schema/context 
	    http://www.springframework.org/schema/context/spring-context-3.0.xsd"
	>

	<!-- 对web包中的所有类进行扫描,以完成Bean创建和自动依赖注入的功能 -->
	<context:component-scan base-package="com.test.controller" />

	<!--对模型视图名称的解析,即在模型视图名称添加前后缀 -->
	<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
		<property name="prefix" value="/jsp/"></property>
		<property name="suffix" value=".jsp"></property>
	</bean>

	<!-- 处理文件上传 -->
	<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
		<property name="defaultEncoding" value="gbk" /> <!-- 默认编码 (ISO-8859-1) -->
		<property name="maxInMemorySize" value="10240" /> <!-- 最大内存大小 (10240) -->
		<property name="uploadTempDir" value="/uploadFile/" /> <!-- 上传后的目录名 -->
		<property name="maxUploadSize" value="-1" /> <!-- 最大文件大小,-1为无限制 -->
	</bean>

</beans>

 

第四步,控制器FileUploadController.java

package com.test.controller;

import java.io.File;
import java.util.Date;

import javax.servlet.ServletContext;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.context.ServletContextAware;
import org.springframework.web.multipart.commons.CommonsMultipartFile;
import org.springframework.web.servlet.view.InternalResourceViewResolver;

@Controller
public class FileUploadController implements ServletContextAware {

	private ServletContext servletContext;

	public ServletContext getServletContext() {
		return servletContext;
	}

	public void setServletContext(ServletContext servletContext) {
		this.servletContext = servletContext;
	}

	// 这里@RequestParam("file")必须要有(不清楚为什么),必须是post请求
	@RequestMapping(value = "/upload", method = RequestMethod.POST)
	public String handleUploadData(@RequestParam("file") CommonsMultipartFile file, Model model) {
		String fileName = "";
		String message = "";
		if (!file.isEmpty()) {
			String path = this.servletContext.getRealPath("/temp");// 获取本地存储路径
			System.out.println(path);
			fileName = file.getOriginalFilename();
			String[] fileArray = fileName.split("\\.");
			File file2 = new File(path + "\\" + fileArray[0] + "_" + new Date().getTime() + "." + fileArray[1]);
			try {
				file.getFileItem().write(file2);
			} catch (Exception e) {
				e.printStackTrace();
				message = "上传失败!";
			}
			message = "上传成功!";
		} else {
			message = "没有文件可上传!";
		}
		model.addAttribute("fileName", fileName);
		model.addAttribute("message", message);

		return InternalResourceViewResolver.REDIRECT_URL_PREFIX + "/uploadFile.jsp";
	}
}

 

前台页面/uploadFile.jsp

<%@ page language="java" pageEncoding="gbk"%>
<html>
<head>
<title>测试springmvc中上传的实现</title>
</head>
<body>
	<form action="upload" method="post" enctype="multipart/form-data">
		<input type="file" name="file" /> <input type="submit" value="上传"/>
	</form>
	<br>
	<h1>
		<%
			String message = request.getParameter("message");
			String fileName = request.getParameter("fileName");
			fileName = fileName == null ? "" : fileName;
			if (!"".equals(fileName)) {
				fileName = new String(fileName.getBytes("iso8859-1"), "GBK");
			}
			if(message != null){
		%>
			文件:
		<%
			}
		%>
		<%=fileName %>&nbsp;
		<%
		
			message = message == null ? "" : message;
			if (!"".equals(message)) {
				message = new String(message.getBytes("iso8859-1"), "GBK");
			}
		%>
		<%=message%>
	</h1>
</body>
</html>

 

WebContent下面新建tempuploadFile文件夹,其中,temp是用于存放上传的文件,uploadFile是临时存放上传的文件一部分(相当于缓存)

浏览器输入:

http://127.0.0.1:9900/springmvc_007_upload/uploadFile.jsp

页面显示:

 

  • 大小: 14.3 KB
  • 大小: 5.4 KB
分享到:
评论

相关推荐

    springmvc上传jar包

    `springmvc上传jar包`这个主题主要关注如何在Spring MVC应用中实现文件上传,特别是使用`CommonsMultipartResolver`作为处理多部分请求的解析器。下面将详细讨论相关知识点。 首先,Spring MVC是Spring框架的一部分...

    springmvc上传文件所需jar包

    在标题和描述中提到的"springmvc上传文件所需jar包"是指为了在Spring MVC应用中支持文件上传,开发者需要引入特定的Java Archive (JAR) 文件。以下是关于这两个关键JAR包的详细解释: 1. `...

    Springmvc上传文件.docx

    SpringMVC 上传文件详解 SpringMVC 框架中上传文件是非常常见的操作,今天我们来详细讲解 SpringMVC 中的文件上传过程。 文件上传的必要条件 在 SpringMVC 中,文件上传需要满足以下几个条件: 1. 表单的 ...

    springMVC 上传文件方式

    springMVC 上传文件方式springMVC 上传文件方式springMVC 上传文件方式

    springmvc上传文件到FTP

    在本文中,我们将深入探讨如何使用Spring MVC框架将文件上传至FTP服务器。Spring MVC是Spring框架的一个组件,专为构建Web应用程序提供模型-视图-控制器(MVC)架构。FTP(File Transfer Protocol)则是一种用于在...

    springMVC 上传下载例子

    例如,上传成功后,可以将文件名添加到模型中,并返回一个重定向视图,跳转到显示上传结果的页面。 6. **视图层** 使用JSP、Thymeleaf或其他模板引擎创建视图页面,展示上传或下载的界面。页面上需要包含表单元素...

    springmvc上传文件实时显示进度条

    在这个特定的项目"springmvc上传文件实时显示进度条"中,我们关注的是如何在文件上传过程中为用户展示进度信息,以提高用户体验。这个项目适用于那些需要处理大文件上传并希望提供反馈的Web应用。 首先,要实现文件...

    springMVC上传下载样例

    文件上传是项目开发中最常见的功能。为了能上传文件,必须将表单的method设置为POST,并将enctype设置为multipart/form-data。只有在这样的情况下,浏览器才会把用户选择的文件以二进制数据发送给服务器。 一旦设置...

    SpringMVC上传文件的四种方法

    在Spring MVC框架中,文件上传是一项常见的功能,用于接收客户端发送的文件数据。这里我们将详细介绍四种不同的文件上传方法,每种方法都有其适用场景和特点。 1. **使用`@RequestParam`注解** 这是最基础的文件...

    springmvc上传下载并且保存到数据库

    在本项目"springmvc上传下载并且保存到数据库"中,我们将探讨如何利用 Spring MVC 实现文件的上传与下载功能,并将相关信息存储到数据库。 1. **文件上传** - **CommonsMultipartFile**:在 Spring MVC 中,我们...

    bootstrap fileinput组件整合Springmvc上传图片到本地磁盘

    主要介绍了bootstrap fileinput组件整合Springmvc上传图片到本地磁盘的方法,需要的朋友可以参考下

    springmvc上传文件controller,vue

    在Spring MVC框架中,文件上传是一项常见的功能,用于接收客户端发送的文件数据。Vue.js作为一个前端框架,可以很好地与Spring MVC结合,实现用户界面的交互和文件上传的处理。在这个项目中,我们将深入探讨如何使用...

    springMVC上传文件demo

    springMVC上传文件的三种解析方式源码。可以添加到tomcat直接运行,运行访问地址为:http://localhost:8080/SpringMVCUploadFileDemo/upload/toUploadFileView1

    SpringMVC上传图片文件到 阿里云【2018年最新版】【JavaWeb】

    在本教程中,我们将深入探讨如何使用SpringMVC框架与阿里云对象存储服务(OSS)集成,实现在JavaWeb应用中上传图片文件。阿里云OSS是一种安全、可靠的云存储服务,适合存储大量数据,如图片、视频、文档等。而...

    ssm框架SpringMVC上传下载

    **SpringMVC上传文件** 1. **配置MultipartFile**: SpringMVC通过`MultipartFile`接口处理文件上传。在`spring-mvc.xml`配置文件中,我们需要开启Multipart resolver,通常使用`CommonsMultipartResolver`,并设置...

    extjs3+springMVC上传文件

    标题“extjs3+springMVC上传文件”指的是使用ExtJS 3版本的JavaScript库与Spring MVC框架结合实现文件上传功能。这篇博文可能是作者在ITEYE博客上分享的一个技术实践,遗憾的是,描述部分为空,没有提供额外的信息。...

    SpringMVC上传文件ie提示下载json文件解决方案

    ### SpringMVC上传文件IE提示下载JSON文件解决方案 在开发基于SpringMVC的应用时,可能会遇到这样一个问题:当用户尝试通过Internet Explorer(IE)浏览器上传文件时,浏览器会提示下载一个JSON文件,而不是正常地...

    SpringMVC上传文件 SSH上传文件

    本主题将深入探讨如何使用SpringMVC和SSH(Struts2 + Hibernate + Spring)框架来实现文件的上传与下载。 首先,我们来看SpringMVC中的文件上传。SpringMVC是Spring框架的一部分,它提供了强大的MVC设计模式支持,...

Global site tag (gtag.js) - Google Analytics