关闭struts的流结果使用的FileInputStream

时间:2011-11-25 10:10:31

标签: java struts2 download struts fileinputstream

我的Web应用程序生成一个XML文件。我使用Struts2流结果来管理下载,这是struts.xml中的操作:

<action name="generateXML" class="navigation.actions.GenerateXML">
    <result type="stream">
        <param name="contentType">text/xml</param>
        <param name="inputName">inputStream</param>
        <param name="bufferSize">1024</param>
    </result>
    ...
</action>

这里是动作类的一部分&#34; GenerateXML&#34; FileInputStream&#34; inputStream&#34;已创建:

public String execute() {
    File xml = new File(filename);
    ...//fill the file with stuff
    try {
        setInputStream(new FileInputStream(xml));
    } finally {
        //inputStream.close();
        xml.delete();
    }
}

删除文件不会起作用,因为inputStream尚未关闭(该部分已注释掉)。但是,如果我此时关闭它,则用户下载的xml文件为空,因为在struts生成下载之前其流已关闭。 除了使用定期删除服务器上的临时文件的脚本之外,还有办法关闭&#34; inputStream&#34; struts之后做了什么?

2 个答案:

答案 0 :(得分:3)

关闭输入流没有删除,但您可以自己编写。请参阅is there an existing FileInputStream delete on close?

这个想法是你没有传递FileInputStream,而是传递你的ClosingFileInputStream,它会覆盖close并在调用close时删除文件。 struts将调用close():

public String execute() {    
    File xml = new File(filename);
        ...//fill the file with stuff
        setInputStream(new ClosingFileInputStream(xml));   
    }

有关详细信息,请参阅链接的问题。

答案 1 :(得分:3)

你不需要那样做。 Struts2会关注蒸汽本身你需要做的就是创建一个输入流并设置它。

以下是struts2如何为您处理流关闭

public class StreamResult extends StrutsResultSupport {
  // removing all other code
      {
        // Flush
                oOutput.flush();
                }
                   finally {
                if (inputStream != null) inputStream.close();
                  if (oOutput != null) oOutput.close();
               }

    }

因为stream是struts2中的一个结果类型,它所做的就是从你定义的流中挑选数据,然后将其关闭。

我希望它能清除你的怀疑。