调用 Struts2 操作并将结果作为 Stream 使用
在 Struts2 框架内这可能吗?和/或我是否仅限于使用 URL/URLConnection 类来获取流形式的响应? 我已经研究过 ActionComponent 类,但我不确定如何使用它?
谢谢。
Is this possible, within the Struts2 framework, and/or am I limited to using the URL/URLConnection classes to get the response as a stream?
I've looked into the ActionComponent class but I'm not sure how to use it?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信您想要的是在您的操作中使用 StreamResult 。查看以下内容:
http: //struts.apache.org/2.1.2/struts2-core/apidocs/org/apache/struts2/dispatcher/StreamResult.html
下面是下载文件的示例:
http://www.mkyong.com/struts2/struts-2-download-file-example/
I believe what you want is to use a StreamResult in your action. Check out the following:
http://struts.apache.org/2.1.2/struts2-core/apidocs/org/apache/struts2/dispatcher/StreamResult.html
Here's an example for downloading a file:
http://www.mkyong.com/struts2/struts-2-download-file-example/