Struts2导出较大文件时内容为空

今天现场说系统中的一个导出Excel的功能导出的文件为空,一测试还真是的,不过奇怪的是导入内容较少的时候还是可以导出的,在内容较多时就为空了。

1. 分析为空情况

A.查询结果为空

B.在struts获取InputStream时为空

看过程序后A情况就被排除了,因为程序中是现在服务器目录生成一个Excel临时文件,然后导出时直接读取的文件流。
然后考虑是不是参数名没和struts的匹配上,一开始还真没找到那个参数,后来才发现只需要有个getXXX方法就行了,参数名就是get后边的名称(应该是默认首字母小写)。
贴上配置文件:

<!-- 增加一个返回结果类型 这个结果类型可以处理用户点击取消下载的时候正确的关闭流 -->
        <result-types>  
        <result-type name="streamx" class="com.sunspoter.lib.web.struts2.dispatcher.StreamResultX"/>  
        </result-types>

<action name="downloadResult" class="workflowAction">
            <result name="success" type="streamx">  
               <param name="contentType">text/plain</param> <!-- application/octet-stream 无限制类型 -->
               <param name="contentDisposition">attachment;fileName="${path}"</param>  
               <param name="inputName">printResult</param>  
               <param name="bufferSize">1024*10</param>  
           </result>

贴上主要方法

public InputStream getPrintResult()
    {
        System.out.println("getPrintResult");
        System.out.println(this.queryStr);
        InputStream is = null;
        UUID uuid = UUID.randomUUID();
        ServletContext context = ServletActionContext.getServletContext();
        try
        {
            this.path = new String(this.path.getBytes(), "ISO8859-1");
        }
        catch (UnsupportedEncodingException e)
        {
            e.printStackTrace();
        }
        String path = context.getRealPath("/") + "case/" + uuid.toString() + ".xls";
        System.out.println(path);
        try
        {
            this.queryStr = URLDecoder.decode(this.queryStr, "utf-8");
            System.out.println("queryStr=" + this.queryStr);
            IWFService wfService = this.workFlowService.getWFService();
            DataTableDto dataTableDto = DataTableUtil.getQueryStruct(Integer.parseInt(this.queryid), wfService, null, null, this.queryStr);
            if ((dataTableDto != null) && (dataTableDto.Rows != null) &&
                    (dataTableDto.Rows.size() > 0))
            {
                List<String> columnList = new ArrayList();
                List<ArrayList<Object>> rowList = new ArrayList();
                for (DataColumnDto column : dataTableDto.Columns) {
                    columnList.add(column.getColumnName());
                }
                for (DataRowDto row : dataTableDto.Rows) {
                    rowList.add(row.alData);
                }
                HSSFWorkbook workbook = new HSSFWorkbook();
                HSSFSheet sheet = workbook.createSheet("查询结果页");
                HSSFRow headRow = sheet.createRow(0);
                HSSFCellStyle style = workbook.createCellStyle();
                style.setAlignment(HSSFCellStyle.ALIGN_CENTER);
                int headRowIndex = 0;
                for(DataColumnDto column : dataTableDto.Columns) {
                    HSSFCell headRowCell = headRow.createCell(headRowIndex++);
                    headRowCell.setCellValue(column.getColumnName());
                    headRowCell.setCellStyle(style);
                }
                int rowIndex = 1;
                Iterator localIterator3;
                for(DataRowDto dataRow : dataTableDto.Rows) {
                    HSSFRow row = sheet.createRow(rowIndex++);
                    int cellIndex = 0;
                    for(Object item : dataRow.alData) {
                        HSSFCell cell = row.createCell(cellIndex++);
                        if(item != null) {
                            cell.setCellValue(item.toString());
                        } else {
                            cell.setCellValue("");
                        }
                        cell.setCellStyle(style);
                    }
                }
                FileOutputStream fout = new FileOutputStream(path);
                workbook.write(fout);
                fout.close();
                is = context.getResourceAsStream("/case/" + uuid.toString() + ".xls");
                return is;
            }
        }
        catch (Exception er)
        {
            er.printStackTrace();
        }
        finally
        {
            try
            {
                is.close();
                File file = new File(path);
                if (file.exists())
                {
                    file.delete();
                    System.out.println("删除文件成功!");
                }
            }
            catch (Exception er)
            {
                er.printStackTrace();
            }
        }
        return null;

    }

在debuge时奇怪的事情发生了
is = context.getResourceAsStream("/case/" + uuid.toString() + ".xls");
没错就是这句代码,大家应该知道这是获取文件流的方法。
但是奇怪的是 当文件比较小时返回的类型为bytearrayInputstream
当文件比较大时返回的类型为FileinputStream

想必到这大家就能发现为什么有时能导出有时导出空白了。被关闭了
这是ByteArrayInputStreamclose()的方法

/**
     * Closing a <tt>ByteArrayInputStream</tt> has no effect. The methods in
     * this class can be called after the stream has been closed without
     * generating an <tt>IOException</tt>.
     * <p>
     */
    public void close() throws IOException {
    }

可以发现这个方法是空的,也就是说关闭操作对他并没有影响
再看看FileInputStream方法

 public void close() throws IOException {
        if (channel != null)
            channel.close();
        close0();
    }

它是可以关闭的,这也是为啥他为空了

再来看看struts实现下载的StreamResultX
贴上主要代码

protected void doExecute(String finalLocation, ActionInvocation invocation) throws Exception {
        this.resolveParamsFromStack(invocation.getStack(), invocation);
        ServletOutputStream oOutput = null;

        try {
            if(this.inputStream == null) {
                this.inputStream = (InputStream)invocation.getStack().findValue(this.conditionalParse(this.inputName, invocation));
            }

            if(this.inputStream == null) {
                String oResponse1 = "StreamResultX : Can not find a java.io.InputStream with the name [" + this.inputName + "] in the invocation stack. " + "Check the <param name=\"inputName\"> tag specified for this action.";
                LOG.error(oResponse1, new String[0]);
                throw new IllegalArgumentException(oResponse1);
            }

            HttpServletResponse oResponse = (HttpServletResponse)invocation.getInvocationContext().get("com.opensymphony.xwork2.dispatcher.HttpServletResponse");
            if(this.contentCharSet != null && !this.contentCharSet.equals("")) {
                oResponse.setContentType(this.conditionalParse(this.contentType, invocation) + ";charset=" + this.contentCharSet);
            } else {
                oResponse.setContentType(this.conditionalParse(this.contentType, invocation));
            }

            int iSize1;
            if(this.contentLength != null) {
                String oBuff = this.conditionalParse(this.contentLength, invocation);
                boolean iSize = true;

                try {
                    iSize1 = Integer.parseInt(oBuff);
                    if(iSize1 >= 0) {
                        oResponse.setContentLength(iSize1);
                    }
                } catch (NumberFormatException var22) {
                    LOG.warn("StreamResultX warn : failed to recongnize " + oBuff + " as a number, contentLength header will not be set", var22, new String[0]);
                }
            }

            if(this.contentDisposition != null) {
                oResponse.addHeader("Content-Disposition", this.conditionalParse(this.contentDisposition, invocation));
            }

            if(!this.allowCaching) {
                oResponse.addHeader("Pragma", "no-cache");
                oResponse.addHeader("Cache-Control", "no-cache");
            }

            oOutput = oResponse.getOutputStream();
            if(LOG.isDebugEnabled()) {
                LOG.debug("StreamResultX : Streaming result [" + this.inputName + "] type=[" + this.contentType + "] length=[" + this.contentLength + "] content-disposition=[" + this.contentDisposition + "] charset=[" + this.contentCharSet + "]", new String[0]);
            }

            byte[] oBuff1 = new byte[this.bufferSize];

            try {
                LOG.debug("StreamResultX : Streaming to output buffer +++ START +++", new String[0]);

                while(-1 != (iSize1 = this.inputStream.read(oBuff1))) {
                    oOutput.write(oBuff1, 0, iSize1);
                }

                LOG.debug("StreamResultX : Streaming to output buffer +++ END +++", new String[0]);
                oOutput.flush();
            } catch (Exception var23) {
                LOG.warn("StreamResultX Warn : socket write error", new String[0]);
                if(oOutput != null) {
                    try {
                        oOutput.close();
                    } catch (Exception var21) {
                        oOutput = null;
                    }
                }
            } finally {
                if(this.inputStream != null) {
                    this.inputStream.close();
                }

                if(oOutput != null) {
                    oOutput.close();
                }

            }
        } finally {
            if(this.inputStream != null) {
                this.inputStream.close();
            }

            if(oOutput != null) {
                oOutput.close();
            }

        }

    }

可以发现和我们自己写的也没啥区别
一般都这么写

fin = new FileInputStream(file);
            response.reset();
            response.setCharacterEncoding("utf-8");
            response.setContentType("application/msword");
            response.setHeader("Content-Disposition", "attachment;filename=" + fileName);
            out = response.getOutputStream();
            byte[] buffer = new byte[512];
            int byteToRead = -1;
            while ((byteToRead = fin.read(buffer)) != -1) {
                out.write(buffer, 0, byteToRead);
            }
            out.flush();

但是惊奇的发现它的finally方法中有对流的关闭方法,好了这就意味着我们在获取完输出流后就不要急着关闭了,struts用完之后就帮我们关闭的。

但是主要问题还是getResourceAsStream()为啥返回的类型还是可变的……

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 217,907评论 6 506
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,987评论 3 395
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 164,298评论 0 354
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,586评论 1 293
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,633评论 6 392
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,488评论 1 302
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,275评论 3 418
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 39,176评论 0 276
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,619评论 1 314
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,819评论 3 336
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,932评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,655评论 5 346
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,265评论 3 329
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,871评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,994评论 1 269
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 48,095评论 3 370
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,884评论 2 354

推荐阅读更多精彩内容

  • 1. Java基础部分 基础部分的顺序:基本语法,类相关的语法,内部类的语法,继承相关的语法,异常的语法,线程的语...
    子非鱼_t_阅读 31,631评论 18 399
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,656评论 18 139
  • 概述 Struts就是基于mvc模式的框架!(struts其实也是servlet封装,提高开发效率!) Strut...
    奋斗的老王阅读 2,940评论 0 51
  • IO简单概述 IO解决问题 : 解决设备与设备之间的数据传输问题(硬盘 -> 内存 内存 -> 硬盘) 读和写文...
    奋斗的老王阅读 3,439评论 0 53
  • 一、 前段日子搬家,又丢了好多东西。现在住在新房子里,看着房间里干干净净清清爽爽,港真,心情十分舒畅。 虽然我知道...
    发疯的然然阅读 489评论 0 0