JSF 文件下载选择器
在任何 JSF 库中,是否有任何组件的工作方式与 < code>
In any of the JSF libraries, is there any component which works just opposite to <t:inputFileUpload>
, to select the folder (@ client machine) and download a predefined file from the server to client machine's selected folder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当浏览器无法处理文件时,它会显示浏览对话框。
它无法处理的文件由 Content-type 决定。因此,为特定资源设置
Content-Type
、Content-Disposition
和 Like 标头,并添加指向该资源的链接。这个答案 有一个例子。
It is the browser that shows the browse dialog whenever there's a file it cannot handle.
And files it can't handle are determined by the Content-type. So set your
Content-Type
,Content-Disposition
and the likes headers for a specific resource, and add a link to that resource.This answer has an example.
如果是在公共空间,您只需在
标记中为
File
提供 urlYou just need to give url to
File
in<a>
tag if it is in public space