如何实现下载文件之二:动态文件

187 篇文章 2 订阅
实验环境:JDeveloper 11.1.2.0.0。
说明:本文改自本人旧作,使用了目前最新的JDeveloper 11.1.2.0.0重新开发验证。(2011-8-3)

文件的内容是动态生成的。

1. 页面代码
这里使用了af:fileDownloadActionListener 组件。
<af:form id="f1">
<af:commandButton text="Download" id="cb1">
<af:fileDownloadActionListener filename="hello.txt" contentType="text/plain; charset=utf-8"
method="#{myBackingBean.writeContent}"/>
</af:commandButton>
</af:form>

2. 对应的Managed Bean代码
public void writeContent(FacesContext facesContext, OutputStream out) {
try {
OutputStreamWriter w = new OutputStreamWriter(out, "UTF-8");
w.write("Even a brick wants to be something.");
w.close();
facesContext.responseComplete();
} catch (Exception e) {
e.printStackTrace();
}
}

Project下载:DownloadFile.7z

http://maping930883.blogspot.com/2010/04/adf094.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值