Struts2_文件上传

前言:文件上传几乎是不可缺少的功能点,必学知识点!!

一、介绍

按照文件上传后保存的位置可以分为三种。

①该项目下的文件夹中

②存到电脑磁盘中

③存到云服务器中,也能是文件服务器(最常用)

④二进制形式保存在数据库中(最安全)

这不是有四点吗,为什么是三种呢?其实②和③是可以规划为一种的。我们在开发时,自己

电脑启动服务运行项目,然后测试文件上传功能,下载到本地磁盘中。在这里,可以将我们

电脑理解成即是运行项目的服务器,也是文件服务器。如果多一台电脑,那台电脑作为文件

件服务器,我们仅仅在上传时请求文件服务器即可,文件服务器帮我们下载。

使用的服务器:ECS云服务器(推荐:阿里云,腾讯云,西部数码)

二、使用(Struts2)

1、upload.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>文件上传界面</title>
</head>
<body>
<form action="${pageContext.request.contextPath }/sy/clz_upload.action" method="post" enctype="multipart/form-data">
		<input type="hidden" name="cid" value="${result.cid }"><br>
		<input type="hidden" name="cname" value="${result.cname }"><br>
		<input type="hidden" name="cteacher" value="${result.cteacher }"><br>
		图片:<input type="file" name="img"><br>
		<input type="submit">
	</form>
</body>
</html>

注意:表单是多功能表单  enctype="multipart/form-data"

2、ClazzAction

package com.zwf.web;

import java.util.HashMap;
import java.util.List;
import java.util.Map;

import com.zwf.Dao.ClazzDao;
import com.zwf.Po.Clazz;
import com.zwf.util.BaseAction;
import com.zwf.util.PageBean;
import com.zwf.util.ResponseUtil;

public class ClazzAction extends BaseAction<Clazz> {

	 private File img;//文件
	 private String imgFileName;//文件名
	 private String imgContentType;//文件类型
	public File getImg() {
		return img;
	}
	public void setImg(File img) {
		this.img = img;
	}
	public String getImgContentType() {
		return imgContentType;
	}
	public void setImgContentType(String imgContentType) {
		this.imgContentType = imgContentType;
	}
	public String getImgFileName() {
		return imgFileName;
	}
	public void setImgFileName(String imgFileName) {
		this.imgFileName = imgFileName;
	}
	
	 /**
		 * 跳转到文件上传界面
		 * @return
		 * @throws Exception
		 */
	    public String preUpload() throws Exception {
			this.result=this.cd.list(clz, null).get(0);
			this.req.setAttribute("result", result);
			return "upload";
		}
		 /**
			 * 文件上传
			 * @return
			 * @throws Exception
			 */
	    public String upload() throws Exception {
	    	//img代表客户选择的文件(图片),接下来要将图片上传到其他地方
	    	//img代表了源头,要将其写入目的地destDir
	    	String destDir="E:/temp/2021/mvc/upload";//本地磁盘位置
	    	String serverDir="/uploadImages";//地址映射
	    	FileUtils.copyFile(img, new File(destDir+"/"+imgFileName));
	    	//将图片加到数据库
	    	//数据库保存的值是:/uploadImages/xx.png
	    	//图片是在:E:/temp/2021/mvc/upload/1.png
	    	//访问:http://localhost:8080/struts/uploadImages/xx.png
	    	clz.setPic(serverDir+"/"+imgFileName);
	    	this.cd.edit(clz);
			return TOLIST;
		}		    

}

3、Struts-sy.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
	"-//Apache Software Foundation//DTD Struts Configuration 2.5//EN"
	"http://struts.apache.org/dtds/struts-2.5.dtd">
<struts>
	<package name="sy" extends="base" namespace="/sy">
	    
	    <action name="/clz_*" class="com.zwf.web.ClazzAction" method="{1}">
	         <result name="list">/clzList.jsp</result>
	         <result name="toEdit">/clzEdit.jsp</result>
	         <!-- 以前的写法:/book.action?methodName=list
	         type属性有四个选项:
	         1、默认forward:标签体对应的转发页面;
	         2、action:标签体对应的转发的Action后台方法;
	         3、redirect:标签体对应的重定向方法:
	         4、redirectAction:标签体对应的重定向;
	          -->
	         <result name="toList" type="redirectAction">/clz_list</result>
	         <result name="upload">/upload.jsp</result>
	    </action>
	    
	</package>
</struts>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小张同学_java

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值