`

struts文件上传

 
阅读更多
Struts2 文件上传

struts文件上传,获取文件名和文件类型
/**
Action中还有两个属性:uploadFileName和uploadContentType,这两个属性分别用于封装上传文件的文件名、文件类型。这是Struts2设计的独到之处:Strut2的Action类直接通过File类型属性直接封装了上传文件的文件内容,但这个File属性无法获取上传文件的文件名和文件类型,所以Struts2就直接将文件域中包含的上传文件名和文件类型的信息封装到uploadFileName和 uploadContentType属性中,也就是说Struts2针对表单中名为xxx的文件域,在对应的Action类中使用3个属性来封装该文件域信息:
l 类型为File的xxx属性:用来封装页面文件域对应的文件内容。
l 类型为String的xxxFileName属性:用来封装该文件域对应的文件的文件名。
l 类型为String的xxxContentType属性:用来封装该文件域应用的文件的文件类型。
**/


package com.huawei.lifeservice.home.web;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.UUID;

import javax.servlet.ServletContext;

import org.apache.struts2.ServletActionContext;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.opensymphony.xwork2.ActionContext;

public class FileUploadAction extends BaseAction
{
    private static final long serialVersionUID = 4668957692981296279L;
    
    private static Logger logger = LoggerFactory.getLogger(FileUploadAction.class);
    
    /**
     * 图片文件
     */
    private static final String FILE_DOT = ".";
    
    /**
     * 上传文件存放路径
     */
    private final static String UPLOADDIR = "/upload";
    
    /**
     * 文件类型对应的存储位置
     */
    private static final Map<String, String> map = new HashMap<String, String>();
    
    static
    {
        map.put("image/png", "pic");
        map.put("image/jpeg", "pic");
        map.put("image/gif", "pic");
        map.put("text/html", "page");
    }
    
    /**
     * 上传文件集合
     */
    private List<File> file;
    
    /**
     * 上传文件名集合
     */
    private List<String> fileFileName;
    
    /**
     * 上传文件内容类型集合
     */
    private List<String> fileContentType;
    
    public List<File> getFile()
    {
        return file;
    }
    
    public void setFile(List<File> file)
    {
        this.file = file;
    }
    
    public List<String> getFileFileName()
    {
        return fileFileName;
    }
    
    public void setFileFileName(List<String> fileFileName)
    {
        this.fileFileName = fileFileName;
    }
    
    public List<String> getFileContentType()
    {
        return fileContentType;
    }
    
    public void setFileContentType(List<String> fileContentType)
    {
        this.fileContentType = fileContentType;
    }
    
    public String execute()
    {
        return "success";
    }
    
    public void process()
    {
        String imageUrl = null;
        for (int i = 0; i < file.size(); i++)
        {
            imageUrl = uploadFile(i);
        }
        Map<String, String> map = new HashMap<String, String>();
        map.put("url", imageUrl);
        ClientWriter.write2Client(response, map);
    }
    
    public String generateFileName(String fileType)
    {
        String fileName = UUID.randomUUID().toString();
        fileName = fileName.replaceAll("-", "");
        
        if (map.containsKey(fileType))
        {
            // map.get(fileType);
            fileType = fileType.substring(fileType.lastIndexOf("/"));
            fileType = fileType.replaceAll("\\/", FILE_DOT);
        }
        else
        {
            logger.info("file type no exists...");
            fileType = FILE_DOT + "unknown";
        }
        
        return fileName += fileType;
    }
    
    @SuppressWarnings("deprecation")
    public String getSavePath(String fileType)
    {
        String dir = ServletActionContext.getRequest().getRealPath(UPLOADDIR);
        logger.info("file save dir is " + dir);
        
        String path = File.separator;
        if (map.containsKey(fileType))
        {
            path += map.get(fileType) + File.separator;
        }
        
        return dir + path;
    }
    
    private String uploadFile(int i)
    {
        String fileName = null;
        String savePath = null;
        String fileContentType = null;
        
        try
        {
            InputStream in = new FileInputStream(file.get(i));
            
            fileContentType = this.getFileContentType().get(i);
            logger.info("file content type is " + fileContentType);
            
            fileName = generateFileName(fileContentType);
            savePath = getSavePath(fileContentType);
            
            File uploadFile = new File(savePath + fileName);
            OutputStream out = new FileOutputStream(uploadFile);
            
            byte[] buffer = new byte[1024 * 1024];
            int length = 0;
            while ((length = in.read(buffer)) > 0)
            {
                out.write(buffer, 0, length);
            }
            
            in.close();
            out.close();
        }
        catch (FileNotFoundException e)
        {
            logger.error("file not found error", e);
        }
        catch (IOException e)
        {
            logger.error("io error", e);
        }
        
        String accessUrl = getAccessUrl(fileContentType) + fileName;
        return accessUrl;
    }
    
    public void getWebRootPath()
    {
        ActionContext context = ActionContext.getContext();
        ServletContext sc = (ServletContext)context.get(ServletActionContext.SERVLET_CONTEXT);
        String contextPath = sc.getContextPath();
        
        logger.info("contextPath is" + contextPath);
        
        ActionContext.getContext().get(ServletActionContext.SERVLET_CONTEXT);
        
        String temp = ServletActionContext.getServletContext().getContextPath();
        System.err.println(temp);
        
        SimpleResp<Object> simple = new SimpleResp<Object>();
        simple.setData("ok");
        simple.setResult(new Result(ReturnCode.PARAM_EPT));
        
        ClientWriter.write2Client(response, simple);
    }
    
    public String getWebApplicationRoot()
    {
        ActionContext ac = ActionContext.getContext();
        ServletContext sc = (ServletContext)ac.get(ServletActionContext.SERVLET_CONTEXT);
        String contextPath = sc.getContextPath();
        return contextPath;
    }
    
    public String getAccessUrl(String fileType)
    {
        String webRoot = getWebApplicationRoot();
        String path = File.separator;
        if (map.containsKey(fileType))
        {
            path += map.get(fileType);
        }
        
        String accessUrl = webRoot + UPLOADDIR + path + File.separator;
        accessUrl = accessUrl.replaceAll("\\\\", "/");
        return accessUrl;
    }
}
分享到:
评论

相关推荐

    struts2文件上传下载源代码

    这篇博客文章提供的"struts2文件上传下载源代码"旨在帮助开发者理解和实现这些功能。 文件上传功能允许用户从他们的设备上传文件到服务器。在Struts2中,这通常通过表单实现,表单包含一个`&lt;input type="file"&gt;`...

    JavaEE Struts文件上传

    学习Struts2文件上传不仅需要掌握上述概念和技术,还需要了解文件安全性、异常处理和服务器配置等相关知识。在实际应用中,确保文件上传的健壮性和安全性是至关重要的,比如防止文件覆盖、大小限制、非法文件类型...

    struts2文件上传jar

    这个压缩包包含了实现Struts2文件上传所需的全部jar包,这些库文件对于理解和实现文件上传功能至关重要。 首先,我们要了解Struts2文件上传的基本流程。当用户通过表单提交包含文件输入字段的请求时,Struts2框架会...

    struts2实现文件上传下载

    首先,我们需要了解Struts2中的文件上传机制。Struts2提供了`FileUploadInterceptor`拦截器来处理文件上传请求。在处理文件上传时,开发者需要在Action类中声明一个`List&lt;FileInfo&gt;`类型的字段,用于接收上传的文件...

    struts2 文件上传

    Struts2 文件上传是Web开发中的一个重要功能,它允许用户通过网页上传文件到服务器。Struts2 是一个基于MVC(Model-View-Controller)设计模式的Java Web框架,提供了丰富的特性和强大的控制层功能,使得文件上传...

    struts2文件上传

    Struts2 文件上传是Web开发中的一个重要功能,它允许用户从他们的本地计算机向服务器传输文件。在Struts2框架中,文件上传是通过特定的拦截器实现的,这些拦截器处理了文件上传请求并提供了安全性和大小限制。下面将...

    简单易懂的struts2文件上传

    1. **Struts2文件上传概述** 在Struts2中,文件上传主要依赖于Apache的Commons FileUpload库。这个库提供了处理HTTP多部分请求(用于上传文件)的能力。首先,你需要在项目中引入对应的依赖,通常是Apache Commons ...

    struts2文件上传例子.rar

    在“struts2文件上传例子.rar”这个项目中,开发者已经使用Struts2.0框架实现了一个简单的文件上传功能。MyEclipse 6.6是一个集成开发环境,支持Java EE项目开发,可以直接导入该项目进行运行和调试。 首先,我们...

    Struts2之struts2文件上传详解案例struts011

    在这个"Struts2之struts2文件上传详解案例struts011"中,我们将深入探讨如何实现这一功能。 首先,我们需要了解Struts2中的Action类,它是处理用户请求的核心组件。为了支持文件上传,我们需要创建一个继承自`org....

    struts2文件上传实例

    1. **.struts2配置**:在Struts2框架中,需要在`struts.xml`配置文件中添加相应的action配置,声明文件上传的处理方法。通常,你需要设置`&lt;result&gt;`类型为`stream`,以便处理上传的文件。 2. **Action类**:创建一...

    Struts2文件上传源码

    本文将详细讲解Struts2文件上传的实现原理以及源码分析。 首先,理解文件上传的基本流程。当用户通过HTML表单选择文件并提交时,这些文件数据会被封装到HTTP请求中。Struts2框架提供了内置的支持来处理这样的请求,...

    struts2文件上传和下载

    在Struts2中,文件上传和下载是常见的功能需求,对于用户交互和数据交换至关重要。以下是对这些知识点的详细阐述: 1. **文件上传**: 在Struts2中,文件上传主要依赖于`Commons FileUpload`库,它是一个Apache提供...

    struts2文件上传下载

    在这个特定的项目中,我们关注的是"struts2文件上传下载"的功能,这涉及到用户通过Web界面上传文件到服务器,以及从服务器下载文件到用户的设备。 文件上传是Web应用中的常见需求,例如用户可能需要提交图片、文档...

    Struts2文件上传程序示例

    Struts2文件上传程序是一个典型的企业级Web应用开发中的功能,它允许用户通过网页将本地文件上传到服务器。Struts2作为一款强大的MVC(Model-View-Controller)框架,提供了丰富的功能支持,包括文件上传。这个示例...

    Struts2多个文件上传

    在Struts2中,文件上传功能是一个常用特性,尤其在处理用户提交的多个文件时。本文将详细讲解如何使用Struts2进行多个文件的上传,重点是使用List集合进行上传。 首先,要实现Struts2的文件上传,必须引入必要的...

    Struts2文件上传

    Struts2文件上传是Web开发中常见的功能,用于允许用户在网页上选择并上传本地文件到服务器。在Java Web环境中,Struts2框架提供了一套完整的解决方案来处理文件上传请求。下面将详细介绍Struts2文件上传的核心概念、...

    Struts2文件上传带进度条页面无刷新

    "Struts2文件上传带进度条页面无刷新"的实现涉及多个技术点,包括Struts2的文件上传插件、AJAX异步通信以及前端进度条展示。 首先,Struts2的文件上传依赖于`struts2-upload-plugin`。这个插件扩展了Struts2的核心...

Global site tag (gtag.js) - Google Analytics