struts2 文件流, 文件输出到浏览器 文件下载

时间:2022-10-21 14:55:43

众所周知,直接在页面中插入a标签引入文件地址可以解决,但是这样即暴露了项目路径而且再某些情况下会有一些小问题,最好的办法是用I/O流,

(readlinne方式),今天我记录的是struts2中的文件输入输出框架的用法:

 

struts.xml配置文件片段:

 

<result name="download" type="stream">
                   <!-- 下载文件类型 -->
                   <param name="contentType">text/plain</param>
                   <!-- 下载对话框所弹出的文件名 -->
                   <param name="contentDisposition">
                    attachment;fileName=${currentLogName}
                   </param>
                   <!-- 下载的InputStream流,Struts2自己动对应Action中的getDownloadFile方法,该方法必须返回InputStream 类型 -->
               <param name="inputName">downloadFile</param>
           </result>
           <result name="operate">${nextPage}</result>
           <!-- result的Type必须为stream -->
           <result name="displayLog" type="stream">
                   <!-- 下载文件类型 -->
                   <param name="contentType">text/plain</param>
                   <!-- 下载对话框所弹出的文件名 -->
                   <param name="contentDisposition">
                    fileName=${currentLogName}
                   </param>
                   <!-- 下载的InputStream流,Struts2自己动对应Action中的getDownloadFile方法,该方法必须返回InputStream 类型 -->
               <param name="inputName">displayLog</param>
           </result>

 

注意1: contentDisposition 参数控制在浏览器中显示文件名等, attachment;指明文件以附件形式存在,即点link时会有一个提示框提示下载还是打开, 如果不配置attachment,那么默认是inline的,即浏览器会尝试直接打开文件. 其它参数用法直接看注释吧.

 

JAVA代码片段:

 

public String download(){
        System.out.println("download Log action requested!");
        return "download";
    }

public InputStream getDownloadFile() {
           ResourceBundle resource = ResourceBundle.getBundle("voicefileInfo");
           this.setLogDir(resource.getString("LogPath"));
           String tempfile;


           tempfile = resource.getString("LogDir").concat(this.getCurrentLogName());
          
           System.out.println("getDownloadFile()===>" + tempfile);
          
           return ServletActionContext.getServletContext().getResourceAsStream("/"+tempfile);
    }

 

    public String displayLog(){
        System.out.println("Display Log action requested!");
        return "displayLog";
    }

public InputStream getDisplayLog() {
           ResourceBundle resource = ResourceBundle.getBundle("voicefileInfo");
           this.setLogDir(resource.getString("LogPath"));
       
           String tempfile;

           tempfile = resource.getString("LogDir").concat(this.getCurrentLogName());
          
           System.out.println("getDownloadFile()===>" + tempfile);
          
           return ServletActionContext.getServletContext().getResourceAsStream("/"+tempfile);
    }

 

意外小插曲: java 流中的方法getResourceAsStream("...")只支持相对路径,不识别绝对路径...