如何在jsf中显示图像和onclick提供文件上传(替换)
我想在我的网页上显示一个图像,并让用户能够单击它并上传另一个图像来替换它。
myfaces 或 Richfaces 都可以工作..(我知道 tomahawk 有一些解决方案,但我想知道这是否是唯一的解决方案。我使用的库越少越好..)
谢谢!
I would like to display an image on my web page and provide the user the ability to click it and upload another image to replace it.
Either myfaces or Richfaces works.. (I know tomahawk has some solution but i'm wondering if that's the only solution. The least libraries I use the better..)
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用像
rich:fileUpload
这样的东西(MyFaces 也有一个组件)。在服务器端处理文件上传并替换目标文件。更复杂的解决方案是将图像保存为数据库中的 blob。You can use something like
rich:fileUpload
(MyFaces has also got a component for that). Handle file upload on the server side and replace the target file. A more sofisticaded solution would be with saving images as blobs in a database.