Struts图片上传
前提提要:
java三种上传方案:
1、上传到tomcat服务器 不推荐
原因:上传后需要刷新一遍,图片才会出来。重启tomcat图片会丢失
2、上传到指定文件目录,添加服务器与真实目录的映射关系,从而解耦上传文件与tomcat的关系
3、在数据库表中建立二进制字段,将图片存储到数据库 淘汰 原因:占用空间大,查询耗时长
我们来介绍第二种方式,并且了解它:
upload.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib uri="/ppp" prefix="sd"%>
<!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">
<input type="submit" value="提交">
</form>
</body>
</html>
clzlist.jsp
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib uri="/ppp" prefix="sd"%>
<!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">
<!-- <input type='hidden' name='rows' value="20"> -->
<!-- <input type='hidden' name='pagination' value="false"> -->
书名:<input type="text" name="bname">
<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: 60px;width: 100px;" 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>
<%-- <sd:page pageBean="${pageBean }"></sd:page> --%>
</body>
</html>
配置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:用来将一类子控制器进行分类
其中地址栏中的/sy对应的namespace="/sy"
extends:继承了base包
*的含义: *代表任意方法,只要前台浏览器匹配/user_*这一规定的格式,那么user_add中,*就代表了add
就可以动态调用UserAction中的add方法
-->
<package name="sy" extends="base" namespace="/sy">
<action name="clz_*" class="com.pyc.web.ClazzAction" method="{1}">
<result name="list">/clzList.jsp</result>
<result name="preSave">/clzEdit.jsp</result>
<result name="preUpload">/upload.jsp</result>
<result name="toList" type="redirectAction">clz_list</result>
<!-- chain:Action链式处理的结果类型,也就是将结果转发到这个action中。
redirect:实际上dispatcher和redirect的区别就是在于转发和重定向的区别。
redirectAction:用于直接redirectaction。 -->
</action>
</package>
</struts>
在控制器ClazzAction中添加方法:
package com.pyc.web;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import org.apache.commons.io.FileUtils;
import com.opensymphony.xwork2.ModelDriven;
import com.pyc.dao.ClzDao;
import com.pyc.entity.Clazz;
import com.pyc.util.BaseAction;
import com.pyc.util.PageBean;
public class ClazzAction extends BaseAction implements ModelDriven<Clazz>{
private ClzDao clzDao=new ClzDao();
private Clazz clz=new Clazz();
private File file;
private String fileFileName;
private String fileContentType;
/**
* 跳转上传页面
* @return
*/
public String preUpload() {
try {
this.result = clzDao.list(clz, null).get(0);
} catch (Exception e) {
e.printStackTrace();
}
return "preUpload";
}
/**
* 处理上传发送的请求
* @return
*/
public String upload() {
//图片存放的真实目录?
String realDir="D:/imges";
String serverDir="/upload";
try {
//将本地的图片上传到服务器的某一真实存在目录(从本地读取文件写入服务器)
// FileUtils.copyFile(file, new File(realDir+"/"+fileFileName));
copyFile(file, new File(realDir+"/"+fileFileName));
clz.setPic(serverDir+"/"+fileFileName);
this.clzDao.edit(clz);
} catch (Exception e) {
e.printStackTrace();
}
return "toList";
}
/**
* 从本地读取文件写入到服务器
* @param source
* @param target
* @throws Exception
*/
private void copyFile(File source,File target) throws Exception {
BufferedInputStream in=new BufferedInputStream(new FileInputStream(source));
BufferedOutputStream out=new BufferedOutputStream(new FileOutputStream(target));
byte[] buf=new byte[1024];
int len=0;
while((len=in.read(buf))!=-1) {
out.write(buf,0,len);
}
in.close();
out.close();
}
/**
* 查询方法
* @return
*/
public String list() {
PageBean pageBean=new PageBean();
pageBean.setRequest(request);
try {
//result可以值栈赋值
this.result=clzDao.list(clz, pageBean);
request.setAttribute("pageBean", pageBean);
} catch (Exception e) {
e.printStackTrace();
}
return "list";
}
/**
* 跳转编辑页面(新增编辑页面是同一张)
* 保存方法
* @return
*/
public String preSave() {
//什么时候跳转新增页面,什么时候跳转编辑页面
//区别在于:跳编辑页面的时候需要传递cid到后台进行查寻,并且将查询到的数据进行回显
int cid=clz.getCid();
if(cid != 0) {
try {
this.result = clzDao.list(clz, null).get(0);
} catch (Exception e) {
e.printStackTrace();
}
}
return "preSave";
}
/**增加班级信息
* @return
*/
public String add() {
try {
this.code =this.clzDao.add(clz);
} catch (Exception e) {
e.printStackTrace();
}
return "toList";//查询完需要刷新
}
/**
* 修改班级信息
* @return
*/
public String edit() {
try {
this.code=this.clzDao.edit(clz);
} catch (Exception e) {
e.printStackTrace();
}
return "toList";//查询完需要刷新
}
/**
* 删除班级信息
* @return
*/
public String del() {
try {
this.code= this.clzDao.del(clz);
} catch (Exception e) {
e.printStackTrace();
}
return "toList";//查询完需要刷新
}
@Override
public Clazz getModel() {
return clz;
}
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;
}
}
在Tomcat中的server.xml配置映射关系:
path是项目里面存放图片的路径,docBase是图片存放的路径