struts2上传文件步骤和常用常量的设置


单文件上传:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
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 'index.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">

  </head>
  
  <body>
   <!-- index:命名空间,index:action名 -->
    <form enctype="multipart/form-data" action="${pageContext.request.contextPath }/index/index" method="post"> 
    请选择上传的文件:<input type="file" name="image"><br>
    <input type="submit" value="上传">
   
    </form>
   
    <%--预览上传的文件 --%>
    <!-- <div>
    <img src="D:\myprojectMyEclipse10\.metadata\.me_tcat\webapps\testfile\upload\images\1.jpg"/>
    </div> -->
  </body>
</html>


package wenjian;


import java.io.File;


import org.apache.commons.io.FileUtils;
import org.apache.struts2.ServletActionContext;


import com.opensymphony.xwork2.ActionContext;


//单文件上传Action
public class WAction {
private File image;//属性名称(和表单中的name属性相同)
private String imageFileName;//文件名称
private String imageContentType;//文件类型

public String getImageContentType() {
return imageContentType;
}


public void setImageContentType(String imageContentType) {
this.imageContentType = imageContentType;
}


public String getImageFileName() {
return imageFileName;
}


public void setImageFileName(String imageFileName) {
this.imageFileName = imageFileName;
}


public File getImage() {
return image;
}


public void setImage(File image) {
this.image = image;
}


public String addUI(){
return "success";
}


public String execute() throws Exception{

String realpath = ServletActionContext.getServletContext().getRealPath("/upload/images");//获取路径
System.out.println("路径:"+realpath);
System.out.println("文件类型:"+imageContentType);
if(image!=null){  //上传的不为空
File savefile = new File(new File(realpath), imageFileName);
if(!savefile.getParentFile().exists()) savefile.getParentFile().mkdirs();//如果路径不存在,创建路径
FileUtils.copyFile(image, savefile);
ActionContext.getContext().put("message", "上传成功");
ActionContext.getContext().put("path", realpath);
ActionContext.getContext().put("name", imageFileName);
}
return "success";
}
}


多文件上传:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
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 'manyfile.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>
  <!-- index:命名空间,manyfile:action名 -->
    <form enctype="multipart/form-data" action="${pageContext.request.contextPath }/index/manyfile" method="post"> 
                       文件1:<input type="file" name="image"><br>
   
    文件2:<input type="file" name="image"><br>
    
    文件3:<input type="file" name="image"><br>
    <input type="submit" value="上传">
    </form>
   
    <%--预览上传的文件 --%>
    <!-- <div>
    <img src="D:\myprojectMyEclipse10\.metadata\.me_tcat\webapps\testfile\upload\images\1.jpg"/>
    </div> -->
  </body>
</html>




package wenjian;


import java.io.File;


import org.apache.commons.io.FileUtils;
import org.apache.struts2.ServletActionContext;


import com.opensymphony.xwork2.ActionContext;






//多文件上传Action
public class ManyAction {
private File[] image;//属性名称(和表单中的name属性相同)
private String[] imageFileName;//文件名称
private String[] imageContentType;//文件类型
public File[] getImage() {
return image;
}
public void setImage(File[] image) {
this.image = image;
}
public String[] getImageFileName() {
return imageFileName;
}
public void setImageFileName(String[] imageFileName) {
this.imageFileName = imageFileName;
}
public String[] getImageContentType() {
return imageContentType;
}
public void setImageContentType(String[] imageContentType) {
this.imageContentType = imageContentType;
}
public String execute() throws Exception{

String realpath = ServletActionContext.getServletContext().getRealPath("/upload/images");//获取路径
System.out.println("路径:"+realpath);
System.out.println("文件类型:"+imageContentType);
if(image!=null){  //上传的不为空
File savdir = new File(realpath);
if(!savdir.exists()) savdir.mkdirs();//如果路径不存在,创建路径
for(int i = 0;i<image.length;i++){
File savefile = new File(savdir, imageFileName[i]);
FileUtils.copyFile(image[i], savefile);
}

}
ActionContext.getContext().put("message", "上传成功");
return "success";
}
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
毕业设计,基于SpringBoot+Vue+MySQL开发的体育馆管理系统,源码+数据库+毕业论文+视频演示 现代经济快节奏发展以及不断完善升级的信息化技术,让传统数据信息的管理升级为软件存储,归纳,集中处理数据信息的管理方式。本体育馆管理系统就是在这样的大环境下诞生,其可以帮助管理者在短时间内处理完毕庞大的数据信息,使用这种软件工具可以帮助管理人员提高事务处理效率,达到事半功倍的效果。此体育馆管理系统利用当下成熟完善的SpringBoot框架,使用跨平台的可开发大型商业网站的Java语言,以及最受欢迎的RDBMS应用软件之一的Mysql数据库进行程序开发。实现了用户在线选择试题并完成答题,在线查看考核分数。管理员管理收货地址管理、购物车管理、场地管理、场地订单管理、字典管理、赛事管理、赛事收藏管理、赛事评价管理、赛事订单管理、商品管理、商品收藏管理、商品评价管理、商品订单管理、用户管理、管理员管理等功能。体育馆管理系统的开发根据操作人员需要设计的界面简洁美观,在功能模块布局上跟同类型网站保持一致,程序在实现基本要求功能时,也为数据信息面临的安全问题提供了一些实用的解决方案。可以说该程序在帮助管理者高效率地处理工作事务的同时,也实现了数据信息的整体化,规范化与自动化。 关键词:体育馆管理系统;SpringBoot框架;Mysql;自动化
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值