how to return excel in Struts2 result? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T07:21:20Z http://stackoverflow.com/feeds/question/1003892 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1003892/how-to-return-excel-in-struts2-result 0 how to return excel in Struts2 result? roy 2009-06-16T20:54:59Z 2009-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#1003935 2 Answer by Omnipresent for how to return excel in Struts2 result? Omnipresent 2009-06-16T21:06:55Z 2009-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>&lt;result name="excel" type="stream"&gt; &lt;param name="contentType"&gt;application/vnd.ms-excel&lt;/param&gt; &lt;param name="inputName"&gt;excelStream&lt;/param&gt; &lt;param name="contentDisposition"&gt;attachment; filename="${fileName}"&lt;/param&gt; &lt;param name="bufferSize"&gt;1024&lt;/param&gt; &lt;param name="contentLength"&gt;${contentLength}&lt;/param&gt; &lt;/result&gt; </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>