`
花太香
  • 浏览: 25296 次
  • 性别: Icon_minigender_1
最近访客 更多访客>>
社区版块
存档分类
最新评论

struts2 单个文件上传

    博客分类:
  • Java
阅读更多

package com.bse.action;


import java.io.*;
import java.util.UUID;


import com.opensymphony.xwork2.ActionContext;
import org.apache.struts2.ServletActionContext;
import com.opensymphony.xwork2.ActionSupport;


@SuppressWarnings("serial")
public class UploadAction extends ActionSupport {
private static final UUID uuid = UUID.randomUUID();
private File upload;
// 文件类型
private String uploadContentType;
// 文件名称
private String uploadFileName;
// 允许上传的类型
private String allowTypes;
// 保存路径
private String savePath;


// 接受依赖注入的方法
public void setSavePath(String savePath) {
this.savePath = savePath;
}


private String getSavePath() throws Exception {
return ServletActionContext.getServletContext().getRealPath(savePath);
//return "D:\\workspace\\3.6\\tnt\\src\\main\\webapp\\upload";
}


public void setUpload(File upload) {
this.upload = upload;
}


public void setUploadContentType(String uploadContentType) {
this.uploadContentType = uploadContentType;
}


public void setUploadFileName(String uploadFileName) {
this.uploadFileName = uploadFileName;
}


public File getUpload() {
return (this.upload);
}


public String getUploadContentType() {
return (this.uploadContentType);
}


public String getUploadFileName() {
return (this.uploadFileName);
}

public String getAllowTypes() {
return allowTypes;
}


public void setAllowTypes(String allowTypes) {
this.allowTypes = allowTypes;
}


@SuppressWarnings("static-access")
@Override
public String execute() throws Exception {
System.out.println("开始上传单个文件---");
System.out.println("保存路径=========="+getSavePath());
System.out.println("文件名称==========" + getUploadFileName());
System.out.println("文件类型==========" + getUploadContentType());
System.out.println("==========" + getUpload());
// 判断是否允许上传
String filterResult = filterType(this.getAllowTypes().split(","));
if (filterResult != null) {
ActionContext.getContext().put("typeError", "您要上传的文件类型不正确");
return filterResult;
}
// 如果文件保存路径不存在,则创建路径。
File path = new File(getSavePath(), getUploadFileName());
if (!path.exists()) {
path.getParentFile().mkdir();
}
// 重命名文件
uploadFileName = uuid.randomUUID().toString()
+ getExtention(uploadFileName);
// 以服务器的文件保存地址和原文件名建立上传文件输出流
FileOutputStream fos = new FileOutputStream(getSavePath() + "\\"
+ getUploadFileName());
FileInputStream fis = new FileInputStream(getUpload());
byte[] buffer = new byte[1024];
int len = 0;
while ((len = fis.read(buffer)) > 0) {
fos.write(buffer, 0, len);
}
fos.close();
fis.close();
return SUCCESS;
}


private String filterType(String[] types) {
String fileType = this.getUploadContentType();
for (String type : types) {
if (type.equals(fileType)) {
return null;
}
}
return INPUT;
}

private static String getExtention(String fileName) {
int pos = fileName.lastIndexOf(".");
return fileName.substring(pos);
}



}

 

------------------------------------- index.jsp --------------------------------------------------------

<%@page language="java" pageEncoding="UTF-8"%>
<%@taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
</head>
<body>
${requestScope.typeError}
<form action="upload.action" method="post" enctype="multipart/form-data">
<input type="file" name="upload" />
<br>
<input value="upload" type="submit" />
</form>
</body>
</html>

 

-------------------------------------success.jsp --------------------------------------------------------

<%@ page language="java" pageEncoding="UTF-8"%>
<%@taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
</head>
<body>
上传成功!
<br>
文件为:
<img src="<s:property value="'upload/' + uploadFileName"/>" />
<br>
</body>
</html>

 

 

------------------------------------- struts.xml ------------------------------------------------------

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">


<struts>
<!-- 设置struts2 上传文件时 保存的临时目录 -->
<constant name="struts.multipart.saveDir" value="C:\temp"></constant>
<!-- 配置上传是文件的最大限制为200M -->
<constant name="struts.multipart.maxSize" value="20971520" />
<constant name="struts.custom.i18n.resources" value="globalMessages" />
<constant name="struts.i18n.encoding" value="UTF-8" />

<package name="tntmanage" extends="struts-default" namespace="/">
<action name="upload" class="com.bse.action.UploadAction">
<param name="allowTypes">
image/pjpeg,image/bmp,image/jpg,image/png,image/x-png,image/gif,image/jpeg
</param>
<param name="savePath">/upload</param>
<result>/success.jsp</result>
<result name="input">/index.jsp</result>
</action>
</package>
</struts>

 

-------------------------------------- web.xml -----------------------------------------------------------

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0"
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_3_0.xsd">
<display-name></display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>

<!-- Struts2核心控制器 -->
<!-- <filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping> -->

<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

<filter>
<filter-name>struts-cleanup</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ActionContextCleanUp
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts-cleanup</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

</web-app>

 

分享到:
评论

相关推荐

    Struts2单个文件上传

    在Struts2中实现单个文件上传是一项常见的任务,它允许用户通过网页选择本地文件并将其上传到服务器。这个“Struts2单个文件上传”示例提供了完整的功能,包括对上传文件大小和类型的限制,确保了服务端的安全性。 ...

    Struts2 单个、批量文件上传 精简源码

    Struts2提供了强大的文件上传支持,包括单个文件上传和批量文件上传。在这个精简源码案例中,我们将探讨这两种模式的实现方式。 首先,我们来了解一下Struts2单个文件上传的基本概念。在Struts2中,文件上传主要...

    Struts2实现单个文件多个文件上传与下载-多个拦截器

    本项目主要展示了如何在Struts2框架下实现单个文件和多个文件的上传及下载,并且运用了多个拦截器来增强功能和安全性。 首先,让我们详细了解一下文件上传的过程。在Struts2中,文件上传主要依赖于`struts2-...

    struts2文件上传源码和步骤

    2. **Struts2 单个文件上传**: - **方式一**: 在这个例子中,我们创建了一个名为 `UploadAction` 的 Action 类。其中,`File` 类型的 `image` 属性用于接收上传的文件,`String` 类型的 `imageFileName` 和 `...

    struts2实现文件上传(单个+多个文件上传

    本文将详细介绍如何在Struts2中实现单个文件的上传。 ##### JSP 页面设计 首先,我们需要在前端JSP页面上设计一个用于文件上传的表单。为了使Struts2能够识别并处理上传文件,表单需要包含特定的属性。下面是一个...

    struts2的单个文件上传

    本文主要两种方式,一:通过 FileUtils.copyFile(file, savefile);方法复制;二:通过字节流方式复制 ; web.xml struts.xml, struts.properties, UploadAction.java, index.jsp. success.jsp

    Struts2文件批量上传

    Struts2是一个强大的MVC框架,它提供了丰富的功能来支持文件上传操作,包括单个文件上传和批量文件上传。 在Struts2中,文件上传的核心组件是`Commons FileUpload`库,这是一个Apache提供的开源项目,专门用于处理...

    struts2实现单个图片上传

    在本教程中,我们将深入探讨如何利用Struts2实现单个图片的上传功能,无需JavaScript的额外开发。 首先,我们需要理解图片上传的基本流程。用户通过浏览器选择一张图片,然后该图片的文件数据被发送到服务器。...

    struts2 单个文件

    在这个特定的场景中,我们关注的是Struts2中处理单个文件上传的功能。在描述中提到的"上传文件的后台代码"指的是服务器端处理文件上传的逻辑,这部分代码通常位于一个Action类中,例如`FileAction.java`。 在Struts...

    struts2实现单个和多个文件上传示例代码

    在本示例中,我们将深入探讨如何利用Struts2来实现单个和多个文件的上传功能。 首先,我们需要理解文件上传的基本原理。在web应用中,文件上传通常涉及到将客户端计算机上的文件通过HTTP协议传输到服务器端。Struts...

    Struts2多文件上传下载实例

    在实际项目中,文件上传和下载功能是必不可少的,本实例将详细讲解如何在Struts2框架下实现单个文件及多个文件的上传与下载。 首先,我们需要在Struts2的配置文件(struts.xml)中添加相关的Action配置,以便处理文件...

    struts2单个和多个上传文件

    对于多个文件上传,表单的设计与单个文件上传类似,只需要增加多个`&lt;s:file&gt;`标签即可。 ```xml &lt;td colspan="2"&gt;文件上传示例&lt;/h1&gt;&lt;/td&gt; 上传的文件"/&gt; 上传的文件"/&gt; 上传"/&gt; ``` 这里使用了两个`...

    Struts2实现上传单个文件功能

    本篇文章将详细讲解如何使用Struts2实现上传单个文件的功能。 首先,我们需要创建一个用于上传文件的JSP页面。`upload.jsp` 是用户交互的界面,用户在这里选择要上传的文件。JSP页面的关键部分是`&lt;form&gt;`标签,它...

    struts2多文件上传显示进度

    在Struts2中实现多文件上传并显示进度是常见的需求,尤其是在处理大文件或者批量上传时,用户需要实时了解上传进度以提升用户体验。在本案例中,我们将探讨如何在不依赖任何第三方插件的情况下实现这一功能。 首先...

    struts+spring文件上传大小限制.rar

    本压缩包"struts+spring文件上传大小限制.rar"显然是针对在Struts和Spring整合环境下,如何处理文件上传时的大小限制问题。以下将详细介绍这两个框架在文件上传时的处理机制以及如何设置文件大小限制。 1. Struts...

    struts2 多个文件上传 插件goouploader

    在Struts2中,传统的文件上传是通过`&lt;s:file&gt;`标签实现的,但只支持单个文件上传。Goouploader插件则提供了更强大的多文件上传功能,并且具有进度条显示、断点续传等特性。下面将详细介绍如何使用Goouploader插件...

    struts2(ssh)带进度条文件上传 demo 的jar包1

    在Struts2中,实现文件上传功能是非常常见的需求,而带进度条的文件上传则可以提供更好的用户体验,让用户了解文件上传的进度,减少用户的等待焦虑感。 Struts2的文件上传主要依赖于Apache的Commons FileUpload库。...

    struts2多文件上传

    在Struts2中,文件上传是一个常见的功能,尤其在处理用户需要提交多个文件的场景下,例如上传图片或者文档。这个“struts2多文件上传”主题将深入讲解如何在Struts2框架下实现这一功能。 首先,我们需要了解Struts2...

    Struts2自学笔记——Struts2的文件上传

    - 限制单个文件和总上传大小,以防止资源耗尽。 - 提供明确的用户反馈,告知文件上传状态。 通过以上步骤,你可以在Struts2应用中实现一个完整的文件上传功能。不断学习和实践,理解其背后的原理和安全要点,将使...

Global site tag (gtag.js) - Google Analytics