struts2实现的文件上传下载案例(一)、FileUpLoad

文件上传目录结构

1. 上传文件的页面 upload.jsp

注意,form表单的enctype="multipart/form-data"这句话一定要写,否则无法上传

${pageContext.request.contextPath }是获取项目路径


2. 开发Action

项目导包import配置没有写,可crtl+shift+O一键导包

/**

  • @author 超伟

  • @2019年6月26日 下午2:13:29

  • @博客:https://blog.csdn.net/MacWx

*/

public class FileAction implements RequestAware {

private Map<String, Object> request;

// 1,获取文件

private File fillup;

// 获取文件名;

private String fillupFileName;

// 获取文件类型

private String fillupContentType;

// in

private Integer id;

public Integer getId() {

return id;

}

public void setId(Integer id) {

this.id = id;

}

// out

private List list;

public List getList() {

return list;

}

public void setList(List list) {

this.list = list;

}

public File getFillup() {

return fillup;

}

public void setFillup(File fillup) {

this.fillup = fillup;

}

public String getFillupFileName() {

return fillupFileName;

}

public void setFillupFileName(String fillupFileName) {

this.fillupFileName = fillupFileName;

}

public String getFillupContentType() {

return fillupContentType;

}

public void setFillupContentType(String fillupContentType) {

this.fillupContentType = fillupContentType;

}

public String FileUp() {

FileInputStream fis = null;

FileOutputStream fos = null;

BufferedInputStream bis = null;

BufferedOutputStream bos = null;

try {

// 创建文件输入流

fis = new FileInputStream(fillup);

// 创建包装流,加快文件上传速度

bis = new BufferedInputStream(fis);

System.out.println("name= " + fillupFileName);

System.out.println("type= " + fillupContentType);

// 获取request对象

HttpServletRequest request = ServletActionContext.getRequest();

ServletContext context = request.getServletContext();

// 创建文件路径,文件对应的文件类型放入对应的文件夹下

String path = “/file”;

if (fillupContentType.equals(“text/plain”)) {

path = “/file/text”;

} else if (fillupContentType.equals(“image/png”)

|| fillupContentType.equals(“image/jpg”)) {

path = “/file/img”;

}

else if (fillupContentType.equals(“application/msword”)) {

path = “/file/word”;

}

else if (fillupContentType.equals(“application/zip”)) {

path = “/file/zip”;

}

else if (fillupContentType.equals(“application/x-msdownload”)) {

path = “/file/exe”;

}

//如果对应放的文件夹不存在,则创建!

String realPath = context.getRealPath(path);

File filePath = new File(realPath);

if (!filePath.exists()) {

// 不存在

filePath.mkdirs();

}

//System.out.println("realPath= " + realPath);

System.out.println("filePath= " + filePath);

// 新建输出流

fos = new FileOutputStream(realPath + “\” + fillupFileName);

bos = new BufferedOutputStream(fos);

// 3,边读边写

while (true) {

int read = bis.read();

if (read == -1) {

break;

}

bos.write(read);

}

// 调用service方法,将文件名,文件路径等存入数据库

FileService service = new FileServiceImpl();

Fileupload f = new Fileupload(null, fillupContentType,“/”+fillupFileName, path, null);

service.upFile(f);

} catch (FileNotFoundException e) {

// TODO Auto-generated catch block

e.printStackTrace();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

} finally {

// 4,关闭流

try {

bis.close();

bos.close();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

return “success”;

}

}

注意:根据相对项目的路径地址,获取一个文件的绝对路径,要使用servletContext.getRealPath(“/相对项目根目录的路径”);

service实现类方法如下:FileServiceImpl.java

package com.macw.service.impl;

import java.sql.Connection;

import java.sql.SQLException;

import java.util.List;

import com.macw.dao.FileDao;

import com.macw.dao.impl.FileDaoImpl;

import com.macw.entity.Fileupload;

import com.macw.service.FileService;

import com.macw.util.JdbcUtil;

/**

  • @author 超伟

  • @2019年6月26日 下午2:11:37

  • @博客:https://blog.csdn.net/MacWx

*/

public class FileServiceImpl implements FileService {

/* (non-Javadoc)

  • @see com.macw.service.FileService#upFile(com.macw.entity.File)

*/

public void upFile(Fileupload f) {

// TODO Auto-generated method stub

Connection conn = JdbcUtil.getConnection();

try {

conn.setAutoCommit(false);

FileDao dao = new FileDaoImpl();

dao.upFile(f);

conn.commit();

} catch (SQLException e) {

// TODO Auto-generated catch block

try {

conn.rollback();

} catch (SQLException e1) {

// TODO Auto-generated catch block

e1.printStackTrace();

}

e.printStackTrace();

}finally{

JdbcUtil.toClose(conn, null, null);

}
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数Java工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年Java开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Java开发知识点,真正体系化!

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!

如果你觉得这些内容对你有帮助,可以扫码获取!!(备注Java获取)

img

总结

面试前的“练手”还是很重要的,所以开始面试之前一定要准备好啊,不然也是耽搁面试官和自己的时间。

我自己是刷了不少面试题的,所以在面试过程中才能够做到心中有数,基本上会清楚面试过程中会问到哪些知识点,高频题又有哪些,所以刷题是面试前期准备过程中非常重要的一点。

面试题及解析总结

三年Java开发,刚从美团、京东、阿里面试归来,分享个人面经

大厂面试场景

三年Java开发,刚从美团、京东、阿里面试归来,分享个人面经

知识点总结

三年Java开发,刚从美团、京东、阿里面试归来,分享个人面经

《互联网大厂面试真题解析、进阶开发核心学习笔记、全套讲解视频、实战项目源码讲义》点击传送门即可获取!

总结

面试前的“练手”还是很重要的,所以开始面试之前一定要准备好啊,不然也是耽搁面试官和自己的时间。

我自己是刷了不少面试题的,所以在面试过程中才能够做到心中有数,基本上会清楚面试过程中会问到哪些知识点,高频题又有哪些,所以刷题是面试前期准备过程中非常重要的一点。

面试题及解析总结

[外链图片转存中…(img-VopwQEir-1713373153416)]

大厂面试场景

[外链图片转存中…(img-eblf2Qlb-1713373153417)]

知识点总结

[外链图片转存中…(img-hPbnVLpX-1713373153417)]

《互联网大厂面试真题解析、进阶开发核心学习笔记、全套讲解视频、实战项目源码讲义》点击传送门即可获取!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值