动态添加jar中的图片
如何动态添加jar中的图片?有可能吗?
在我的 swing 项目中,我让用户使用 JFileChooser
选择他的 user_image
。现在我无法使用数据库。所以我想是否可以将上传的图像添加到jar中然后获取它。这应该是一个有效的方法吗?或者还有其他想法可以做到这一点吗?如何有效地保存图像以便我的 swing 应用程序可以访问它。图像的数量不固定,因为图像将由同一台计算机上的多个用户使用相同的 jar 文件上传。
How to add images in jar dynamically? Is it even possible?
In my swing project I let the user select his user_image
using JFileChooser
. Now I'm not able to use database. So I think if I can add the uploaded image in jar and then fetch it. Should it be a valid way? Or any other idea to do this? How can I efficiently save images so that my swing app can access it. The number of images is not fixed cause images will be uploaded by multiple user on the same machine using same jar file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议您有一个应用程序从中读取图像的应用程序目录,并使用 首选项 API
I would suggest you to have an app directory from which your app is reading images and make this dir configurable using Preference-API
我不确定将动态数据存储在 jar 中是个好主意。如果您创建动态本地应用程序,您可以使用一些工作目录。或者您可以使用 http 连接来处理远程图像存储。或者您可以使用数据库。
或者您开发一些灵活的界面,例如:
。
只要您的应用程序正在开发中,就可以通过类来实现它:
.
您可以根据需要组织图像的存储和读取,而无需更改应用程序的引擎。
I'm not sure store dynamic data in jar is good idea. If you create dynamic local application you can use some working directory. Or you can use http connection to work with remote images storage. Or you can use a DB.
Or you develop something like flexible interface such as:
.
And implement it by classes as long as your application is being developed:
.
You can organize storing and reading of images as you want without changes in engine of your application.