JSF 中有浏览按钮吗?
我需要这个来实现我创建的基于网络的应用程序的导入功能。我需要获取用户想要导入的文本文件的路径,以便获取文本文件内的数据并将其保存在数据库中。
I need this for the import functionality of the web-based app im creating. I need to get the path of a text file the user wants to be imported in order to egt the data inside the text file and saves it in a database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
标准 JSF 中没有这样的组件。但是,有几个组件库提供文件选择:
There is no such component in standard JSF. However, there are several component libraries that offer file selection:
<p:fileUpload>
<rich:fileUpload>
<ice:inputFile>
<t:inputFileUpload>
您可以查看 - http://livedemo.exadel.com/richfaces-demo /richfaces/fileUpload.jsf,并相应地构建您的。
You could check this out - http://livedemo.exadel.com/richfaces-demo/richfaces/fileUpload.jsf, and build yours accordingly.