博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
struts2 文件上传下载注解示例
阅读量:5102 次
发布时间:2019-06-13

本文共 1759 字,大约阅读时间需要 5 分钟。

上传下载网上有很多,在这里就不一一介绍了,写这个博客的目的是因为写项目的时候一时间找不到适用的注解形式的下载(操作本地文件的显示)

 

 

代码如下:

package com.carrentmanager.utils;

import java.io.FileInputStream;

import java.io.FileNotFoundException;
import java.io.InputStream;

import org.apache.struts2.convention.annotation.Action;

import org.apache.struts2.convention.annotation.Namespace;
import org.apache.struts2.convention.annotation.Result;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;

@Controller
@Scope("prototype")
@Namespace("/download")
/***params键值对形式***/
@Result(name = "download",type = "stream", params={"contentType","images/jpg","inputName","targetFile","contentDisposition","fileName=%{fileName}","bufferSize","4096"})
public class DownloadAction extends BaseAction{
/**
*
*/
  private static final long serialVersionUID = 1L;
  private String fileName;
  private String filePath;
  private String savePath = "D:/images_day_57/";
  @SuppressWarnings("unused")
  private InputStream targetFile;
  @Action(value="download")
  public String execute(){
    return "download";
  }
  public InputStream getTargetFile() throws FileNotFoundException {
    return new FileInputStream(savePath + filePath);
  }
  public String getFilePath() {
    return filePath;
  }
  public void setFilePath(String filePath) {
    this.filePath = filePath;
  }
  public String getFileName() {
    return fileName;
  }
  public void setFileName(String fileName) {
    this.fileName = fileName;
  }
  public String getSavePath() {
    return savePath;
  }
  public void setSavePath(String savePath) {
    this.savePath = savePath;
  }
  public void setTargetFile(InputStream targetFile) {
    this.targetFile = targetFile;
  }
}

转载于:https://www.cnblogs.com/bigot-Lee/p/6807467.html

你可能感兴趣的文章
MySQL索引背后的数据结构及算法原理
查看>>
#Leetcode# 209. Minimum Size Subarray Sum
查看>>
SDN第四次作业
查看>>
DM8168 DVRRDK软件框架研究
查看>>
django迁移数据库错误
查看>>
yii 跳转页面
查看>>
洛谷 1449——后缀表达式(线性数据结构)
查看>>
Data truncation: Out of range value for column 'Quality' at row 1
查看>>
Dirichlet分布深入理解
查看>>
(转)Android之发送短信的两种方式
查看>>
python第九天课程:遇到了金角大王
查看>>
字符串处理
查看>>
HtmlUnitDriver 网页内容动态抓取
查看>>
ad logon hour
查看>>
获得进程可执行文件的路径: GetModuleFileNameEx, GetProcessImageFileName, QueryFullProcessImageName...
查看>>
证件照(1寸2寸)拍摄处理知识汇总
查看>>
罗马数字与阿拉伯数字转换
查看>>
Eclipse 反编译之 JadClipse
查看>>
Python入门-函数
查看>>
[HDU5727]Necklace(二分图最大匹配,枚举)
查看>>