how to return excel in Struts2 result? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T07:21:20Zhttp://stackoverflow.com/feeds/question/1003892http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1003892/how-to-return-excel-in-struts2-result0how to return excel in Struts2 result?roy2009-06-16T20:54:59Z2009-06-16T21:20:45Z
<p>I am trying to return an Excel sheet from my struts2 action class. </p>
<p>I am not sure what result-type should I be using? Has anyone tried to return an excel from struts2 action class? I would like the user to be presented with open/save/cancel dialog box</p>
http://stackoverflow.com/questions/1003892/how-to-return-excel-in-struts2-result/1003935#10039352Answer by Omnipresent for how to return excel in Struts2 result?Omnipresent2009-06-16T21:06:55Z2009-06-16T21:20:45Z<p>You can utilize the <a href="http://struts.apache.org/2.x/docs/stream-result.html" rel="nofollow">Stream Result</a> type</p>
<p>an Example will look like this:</p>
<pre><code><result name="excel" type="stream">
<param name="contentType">application/vnd.ms-excel</param>
<param name="inputName">excelStream</param>
<param name="contentDisposition">attachment; filename="${fileName}"</param>
<param name="bufferSize">1024</param>
<param name="contentLength">${contentLength}</param>
</result>
</code></pre>
<p><code>excelStream</code> will be a method in your action class, <code>contentLength</code> will be length of the stream, <code>fileName</code> will be a getter which will return back the name of the file. </p>