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

来源:互联网 发布:网络众筹 编辑:程序博客网 时间:2024/04/29 03:04
实验环境: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
原创粉丝点击