Struts(图片上传)

文件上传:

三种上传方案

1、上传到tomcat服务器 不推荐
	上传后需要刷新一遍,图片才会出来
	重启tomcat图片会丢失
2、上传到指定文件目录,添加服务器与真实目录的映射关系,从而解耦上传文件与tomcat的关系
	文件服务器
	图片上传到  d:/uploadImages/2019/08/23/20190823100951.png
	访问:http://www.javaxl.com/uploadImages/2019/08/23/20190823100951.png
	ip+port
	
	file:///E:/temp/237/stationmaster_img.png
	/upload/7.png
3、在数据库表中建立二进制字段,将图片存储到数据库 淘汰
		占用空间大
		查询耗时长

根据上次博客内容:https://blog.csdn.net/qq_45105634/article/details/100069881
clzList.jsp页面加入:

<a href="${pageContext.request.contextPath}/sy/clz_preUpload.action?cid=${c.cid}">上传</a>

clzList.jsp

<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="/bk201"  prefix="b"%>
<!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>
<h2>小说目录</h2>
	<br>
	<form action="${pageContext.request.contextPath}/sy/clz_list.action" method="post">
		<!--用户设置查询 一页20条记录  -->
	 <!-- 	<input type="hidden" name="rows" value="20"/> -->
		<!--用户设置不分页  -->
	 	<!-- <input type="hidden" name="pagination" value="false"/> -->
		书名:<input type="text" name="cname"> <input type="submit"
			value="确定">
	</form>
	<a href="${pageContext.request.contextPath}/sy/clz_preSave.action">增加</a>
	<table border="1" width="100%">
		<tr>
			<td>编号</td>
			<td>班级名称</td>
			<td>教员</td>
			<td>图片</td>
			<td>操作</td>
		</tr>
		 <c:forEach items="${result}" var="c">
			 <tr>
				<td>${c.cid}</td>
				<td>${c.cname}</td>
				<td>${c.cteacher}</td>
				<td><img style="height:100px;width: 200px;" src="${pageContext.request.contextPath}${c.pic }"></td>
				<td>
				  <a href="${pageContext.request.contextPath}/sy/clz_preSave.action?cid=${c.cid}">修改</a>
				  <a href="${pageContext.request.contextPath}/sy/clz_del.action?cid=${c.cid}">删除</a>
				  <a href="${pageContext.request.contextPath}/sy/clz_preUpload.action?cid=${c.cid}">上传</a>
				</td>
			</tr> 
		</c:forEach> 
	</table>
	<b:page pageBean="${pageBean}"></b:page> 
	<!--运行 http://localhost:8080/struts2_zsgc/sy/clz_list.action -->
</body>
</html>

上传页面
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>班级logo页面</title>
</head>
<body>
<form action="${pageContext.request.contextPath}/sy/clz_upload.action" enctype="multipart/form-data" method="post">
  <input type="hidden" value="${result.cid}" name="cid"/><br>
<input type="hidden" value="${result.cname}" name="cname"/><br>
 <input type="hidden" value="${result.cteacher}" name="cteacher"/><br>
 <input type="file"  name="file"/><br>
 <button type="submit">确认</button>
</form>
</body>
</html>

ClzAction.java

package com.three.web;


import java.io.File;
import java.io.IOException;

import org.apache.commons.io.FileUtils;

import com.opensymphony.xwork2.ModelDriven;
import com.three.dao.ClzDao;
import com.three.entity.Clazz;
import com.three.uitl.BaseAction;
import com.three.uitl.PageBean;

public class ClazzAction extends BaseAction implements ModelDriven<Clazz> {
	private ClzDao cd = new ClzDao();
	private Clazz c = new Clazz();
	private File file; //<input type="file"  name="file"/>中name对应
	private String fileFileName;
	private String fileContentType;
	/**
	 * 跳转上传页面
	 * @return
	 */
	public  String preUpload() {
		try {
			this.result=cd.list(c,null).get(0);
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return "preUpload";
	}
	/**
	 * 处理上传发送的亲求
	 * @return
	 * @throws Exception 
	 */
	public  String upload() throws Exception {
		//图片存放的真实目录
		String realDir="F:/图片/乱搞"; 
		String serverDir="/upload";
		try {
			FileUtils.copyFile(file, new File(realDir+"/"+fileFileName));
			c.setPic(serverDir+"/"+fileFileName);
			this.cd.edit(c);
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return "toList";
	}
	
	/**
	 * 查询班级列表的方法
	 * @return
	 */
	public  String list() {
		PageBean pageBean = new PageBean();
		pageBean.setRequest(request);
		try {
			this.result=this.cd.list(c, pageBean);
			request.setAttribute("pageBean", pageBean);
		} catch (Exception e) {
			e.printStackTrace();
		}
		return "list";
	}
	
	public  String preSave() {
		int cid =c.getCid();
		if(cid !=0) {
			try {
				this.result=this.cd.list(c, null).get(0);
			} catch (Exception e) {
				e.printStackTrace();
			}
		}
		return "preSave";
	}
	
	public  String add() {
		try {
			this.code = this.cd.add(c);
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return "toList";
	}
	
	public  String edit() {
		try {
			this.code = this.cd.edit(c);
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return "toList";
	}
	
	public  String del() {
		try {
			this.code = this.cd.del(c);
		} catch (Exception e) {
			e.printStackTrace();
		}
		return "toList";
	}
	
	public Clazz getModel() {
		return c;
	}
	public File getFile() {
		return file;
	}
	public void setFile(File file) {
		this.file = file;
	}
	public String getFileFileName() {
		return fileFileName;
	}
	public void setFileFileName(String fileFileName) {
		this.fileFileName = fileFileName;
	}
	public String getFileContentType() {
		return fileContentType;
	}
	public void setFileContentType(String fileContentType) {
		this.fileContentType = fileContentType;
	}

}

这里可以根据路径直接去浏览器访问
在这里插入图片描述
在这里插入图片描述
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>
	<!-- 相对mvc的差异性 package:用来将一类子控制进行分类 http://localhost:8080/T237_struts/sy/user_list.action 
		中/sy对应的namespace="/sy" extends:包的继承 *的含义 *代表任意方法,只要前台浏览匹配/user_*这一个是,那么user_add中,*代表了add -->
	<package name="sy" extends="base" namespace="/sy">
		<action name="/user_*" class="com.web.UserAction" method="{1}">
			<result name="success">/test.jsp</result>
		</action>

		<action name="demo_*" class="com.web.DemoAction" method="{1}">
			<result name="rs">/rs.jsp</result>
		</action>

		<action name="tomcat_*" class="com.web.TomcatAction" method="{1}">
			<result name="rs">/rs.jsp</result>
		</action>


		<action name="stack_*" class="com.test.DemoAction" method="{1}">
			<result name="rs">/rs.jsp</result>
		</action>

   <action name="clz_*" class="com.three.web.ClazzAction" method="{1}">
	     <result name="list">/clzList.jsp</result>
	     <result name="preSave">/preSave.jsp</result>
	       <result name="preUpload">/upload.jsp</result>
	     <result name="toList" type="redirectAction">clz_list</result>
	   </action>  



	</package>
</struts>

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>
	<!-- 相对mvc的差异性 package:用来将一类子控制进行分类 http://localhost:8080/T237_struts/sy/user_list.action 
		中/sy对应的namespace="/sy" extends:包的继承 *的含义 *代表任意方法,只要前台浏览匹配/user_*这一个是,那么user_add中,*代表了add -->
	<package name="sy" extends="base" namespace="/sy">
		<action name="/user_*" class="com.web.UserAction" method="{1}">
			<result name="success">/test.jsp</result>
		</action>

		<action name="demo_*" class="com.web.DemoAction" method="{1}">
			<result name="rs">/rs.jsp</result>
		</action>

		<action name="tomcat_*" class="com.web.TomcatAction" method="{1}">
			<result name="rs">/rs.jsp</result>
		</action>


		<action name="stack_*" class="com.test.DemoAction" method="{1}">
			<result name="rs">/rs.jsp</result>
		</action>

   <action name="clz_*" class="com.three.web.ClazzAction" method="{1}">
	     <result name="list">/clzList.jsp</result>
	     <result name="preSave">/preSave.jsp</result>
	       <result name="preUpload">/upload.jsp</result>
	     <result name="toList" type="redirectAction">clz_list</result>
	   </action>  



	</package>
</struts>

打开servers
在这里插入图片描述

 <Context docBase="F:/图片/乱搞/" path="/struts2_zsgc/upload"/>

在这里插入图片描述
最后的结果页面
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
/* * 使用java.util.Map接口实现文件组的上传 */ private void muchUploadFile(IndexActionForm objForm) { Map<String, FormFile> fileList = objForm.getFileList(); for(String str : fileList.keySet()) if((fileList.get(str)).getFileSize() > 0 && (fileList.get(str)).getFileSize() < BUFFER_SIZE) { String fileName = DIRECTORY +"/"+ fileList.get(str).getFileName(); try { this.fileStream( fileList.get(str).getInputStream(), fileName, fileList.get(str).getFileSize()); } catch (IOException ex) { System.out.println(ex.getMessage()); } } } /* * 使用org.apache.strtus.upload.FormFile实现文件的单一上传 */ private void singleUploadFile(IndexActionForm objForm) { if(objForm.getFile().getFileSize() == 0|| BUFFER_SIZE < objForm.getFile().getFileSize()) throw new RuntimeException("文件过大或不存在!!!"); String fileName = DIRECTORY +"/"+ objForm.getFile().getFileName(); try { this.fileStream( objForm.getFile().getInputStream(), fileName, objForm.getFile().getFileSize()); } catch (IOException ex) { System.out.println(ex.getMessage()); } } /* * copy 到本地目录 */ private void fileStream(InputStream strem, String fileName, int size) { byte[] buffer = new byte[size]; try { InputStream in = null; OutputStream out = null; try{ in = new BufferedInputStream(strem, size); out = new BufferedOutputStream(new FileOutputStream(fileName), size); while(in.read(buffer) > 0) out.write(buffer); }finally { if(null != in) in.close(); if(null != out){ out.flush(); out.close(); } } System.out.println("Uploading Success!!!"); } catch (IOException ex) { System.out.println(ex.getMessage()); } }

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值