`
xfjt297857539
  • 浏览: 153141 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

Struts 2上传文件小谈 (转)

    博客分类:
  • SSH
 
阅读更多
下面谈谈Struts 2框架的文件上传应用
(1)原理:Struts 2框架没有提供文件上传的解析器(也可以说没有提供自己的文件上传组件),它是借助于其他文件上传组件。例如,Struts 2默认的使用Jakarta的commons-fileupload.jar和commons-io.jar。但Struts 2在原有的上传解析器中做了更进一步的封装,更进一步简化上传文件。
(2)首先,在struts.properties文件中配置Struts 2上传文件的解析器
#默认的使用Jakarta的commons-fileupload文件解析器
struts.multipart.parser = jakarta
(3)在WEB-INF/lib中加入两个包,commons-fileupload.jar和commons-io.jar。
(4)编写实现文件上传的Action类,代码如下:
package com.gxa.edu.struts2.ch4.action;
/**
* 利用Struts 2实现文件上传功能
* @author Administrator
*
*/
import java.io.File;
import java.io.FileOutputStream;
import java.io.FileInputStream;
import org.apache.struts2.ServletActionContext;
public class FileUploadAction {

private File fileUpload;//获取上传文件
private String fileUploadContentType;//获取上传文件的类型,注意上传类型变量命名方式
private String fileUploadFileName;//获取上传文件的名称
private String fileSavePath;//设置上传文件的保存路径,利用struts2框架的设置注入。在struts.xml文件配置<param name = "fileSavePath"/>关键字
public String getFileSavePath() {
  return ServletActionContext.getServletContext().getRealPath(fileSavePath);
}
public void setFileSavePath(String fileSavePath) {
  this.fileSavePath = fileSavePath;
}
public File getFileUpload() {
  return fileUpload;
}
public void setFileUpload(File fileUpload) {
  this.fileUpload = fileUpload;
}
public String getFileUploadContentType() {
  return fileUploadContentType;
}
public void setFileUploadContentType(String fileUploadContentType) {
  this.fileUploadContentType = fileUploadContentType;
}
public String getFileUploadFileName() {
  return fileUploadFileName;
}
public void setFileUploadFileName(String fileUploadFileName) {
  this.fileUploadFileName = fileUploadFileName;
}

public String upload() throws Exception {
  System.out.println("===利用struts2上传文件===");
  System.out.println("文件类型===" + this.fileUploadContentType);
  FileInputStream fis = new FileInputStream(getFileUpload());
  File file = new File(getFileSavePath().replaceAll("[url=]\\\\[/url]", "/"));
  if (!file.exists()) {
   file.mkdirs();
  }
  FileOutputStream fos = new FileOutputStream(getFileSavePath().replaceAll("[url=]\\\\[/url]", "/") + "/" + getFileUploadFileName());
  int i = 0;
  byte[] buf = new byte[1024];
  while ((i = fis.read(buf)) != -1) {
   fos.write(buf, 0, i);
  }
  return "success";
}
}
(5)编写一个upload.jsp文件,代码如下:
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib prefix = "s" uri = "/struts-tags" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
  
    <title>My JSP 'upload.jsp' starting page</title>
  
<meta. http-equiv="pragma" content="no-cache">
<meta. http-equiv="cache-control" content="no-cache">
<meta. http-equiv="expires" content="0">  
<meta. http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta. http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
  </head>

  <body>
    This is the FileUpload of Struts 2 page. <br>
    <s:form. action = "upload.action" enctype = "multipart/form-data">
     <input type = "file" name = "fileUpload"></input>
     <input type = "submit" value = "提交"></input>
    </s:form>
  </body>
</html>
(6)配置struts-fileupload.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>
<!-- 如果要上传中文名称的文件,将"struts.i18n.encoding"的值设置为GBK -->
<constant name="struts.i18n.encoding" value="GBK"></constant>
<package name="fileupload" extends = "struts-default" namespace = "/ch4">
  <action name="upload" class = "com.gxa.edu.struts2.ch4.action.FileUploadAction" method = "upload">
   <param name="fileSavePath">/upload</param>
   <result>/ch4/upload.jsp</result>
   <result name = "input">/ch4/upload.jsp</result>
  </action>
</package>
</struts>
分享到:
评论

相关推荐

    struts2讲义_吴峻申

    4.4 Struts2文件上传拦截器应用 61 4.4.1 Struts2文件上传功能开发 61 4.4.2 Struts2文件下载功能开发 68 第5章 Struts2标签库 73 5.1 Struts2标签使用原理解疑 73 5.2 OGNL表达式语言介绍 75 5.3 Struts2控制标签...

    浅谈struts1 & jquery form 文件异步上传

    在本文中,我们将探讨如何使用Struts1框架与jQuery Form插件实现文件的异步上传。Struts1是一个历史悠久的MVC(Model-View-Controller)框架,虽然它已不再是最新的技术,但在许多遗留系统中仍然被广泛使用。jQuery ...

    struts编程思想初探

    - **struts-upload.jar**:用于文件上传的功能。 ##### 3.2 Struts Framework的工作原理和组件 - **3.2.1 StrutsActionServlet** - 初始化Struts框架。 - 负责处理HTTP请求,并将其转发给相应的Action对象。 - ...

    41-谈一谈java代码审计1

    此外,文件上传功能如果没有严格的限制,可能会被利用来执行任意文件操作,比如上传可执行文件并运行。同时,程序员可能在设计程序逻辑时忽视了权限控制,导致垂直或水平越权,使得未经授权的用户可以访问他们不应有...

    java文集

    struts通用Exception处理 Grails中默认数据库HSQLDB点滴 从request获取各种路径总结 DIV实现的表格自动伸张与收缩 java 邮件服务 从Hibernate的映射谈编程思想 COBOL 式死亡,Java 是否真的...

Global site tag (gtag.js) - Google Analytics