最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
struts2实现多文件上传的示例代码
时间:2022-06-25 14:22:21 编辑:袖梨 来源:一聚教程网
开发环境JDK1.8 eclipse struts2-2.3.31
1.创建web项目
2.导入struts2核心jar包
3.更改web.xml配置文件(只要配置好struts2的Filter就好)
4.创建src/struts.xml文件
代码如下 | 复制代码 |
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd">
|
5.创建src/com.ifan.action.FileUpload.Java
代码如下 | 复制代码 |
packagecom.ifan.action;
importjava.io.File;
importorg.apache.commons.io.FileUtils; importorg.apache.struts2.ServletActionContext;
importcom.opensymphony.xwork2.ActionContext; importcom.opensymphony.xwork2.ActionSupport;
publicclassFileUploadextendsActionSupport{
privateFile[] image;//上传的文件 privateString[] imageFileName;//文件名称 privateString[] imageContentType;//文件类型
publicString execute()throwsException { ServletActionContext.getRequest().setCharacterEncoding("UTF-8"); String realpath = ServletActionContext.getServletContext().getRealPath("/images"); System.out.println(realpath); if(image !=null) { File savedir=newFile(realpath); if(!savedir.getParentFile().exists()) savedir.getParentFile().mkdirs(); for(inti=0;i File savefile =newFile(savedir, imageFileName[i]); FileUtils.copyFile(image[i], savefile); } ActionContext.getContext().put("message","文件上传成功"); } return"success"; } publicFile[] getImage() { returnimage; } publicvoidsetImage(File[] image) { this.image = image; } publicString[] getImageContentType() { returnimageContentType; } publicvoidsetImageContentType(String[] imageContentType) { this.imageContentType = imageContentType; } publicString[] getImageFileName() { returnimageFileName; } publicvoidsetImageFileName(String[] imageFileName) { this.imageFileName = imageFileName; } } |
6.创建WebContent/index.jsp ,作为上传文件的页面
代码如下 | 复制代码 |
<%@ page language="java"import="java.util.*"pageEncoding="UTF-8"%> <%@ taglib prefix="s"uri="/struts-tags"%> <% String path = request.getContextPath(); String basePath = request.getScheme() +"://"+ request.getServerName() +":"+ request.getServerPort() + path +"/"; %>
|
7.创建WebContent/success.jsp 作为文件上传成功跳转的页面,创建WebContent/error.jsp 作为文件上传失败的页面 , 创建WebContent/images文件夹,作为上传文件的存储位置
相关文章
- mexc抹茶交易所app最新版下载 mexc抹茶交易所v6.23.0官方版安装包 06-28
- 乐观币价格预测显示牛市格局,市场瞄准2美元目标 - 勇敢新币 06-28
- doge币 doge币今日价格行情 06-28
- zhenbi 甄别 06-28
- 现在最值得购买的4种高速增长加密货币:Web3 AI、XRP、LINK和BNB展现巨大上涨潜力 06-28
- 货币交易平台APP 06-28