是否有一个UI组件,让我选择路径在oracle adf



我正在寻找一个UI组件,该组件允许我浏览文件系统,选择oracle ADF页面中的路径,以便在此特定位置生成文件。我找不到任何其他的输入文件上传文件,但我需要保存一个文件。

有什么建议吗?我搜索了很多,但没有找到任何相关的信息。

谢谢

要下载文件,必须使用af:fileDownloadActionListener组件,如下所示:

<af:commandButton text="Say Hello">
          <af:fileDownloadActionListener filename="hello_txt"
                                    contentType="text/plain; charset=utf-8"
                                    method="#{bean.sayHello}"/>
</af:commandButton>

参见:http://docs.oracle.com/cd/E16162_01/apirefs.1112/e17491/tagdoc/af_fileDownloadActionListener.html

相关内容

  • 没有找到相关文章

最新更新