show/hide this revision's text 2 added 127 characters in body

It

You can utilize the Stream Result type

an Example will be look like this:

<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>

excelStream will be a method in your action class, contentLength will be length of the stream, fileName will be a getter which will return back the name of the file.

show/hide this revision's text 1

It will be like this

<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>

excelStream will be a method in your action class, contentLength will be length of the stream, fileName will be a getter which will return back the name of the file.