You can utilize the Stream Result type
an Example will 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.