在我的应用程序中,我有一个链接,可以在点击时下载PDF文件。
这是我的代码:
链接
<s:submit name="download" value="download" action="generateCoverSheet">
配置文件
<action name="generateCoverSheet" method="generateCoverSheet"
class="probityfinancials.bills.action.BillsAction">
<result name="success" type="stream">
<param name="contentDisposition">attachment;filename=${fileName}</param>
<param name="contentType">${documentContentType}</param>
<param name="inputName">fileInputStream</param>
<param name="bufferSize">1024</param>
</result>
</action>
在我的操作类中,我使用fileName
变量提供了动态文件名,使用fileInputStream
提供了inputStrem。
点击链接我的文件默认情况下,生成的文件会下载到我系统的下载文件夹中。我怀疑是否可以更改我的文件下载位置..?