java 保存列表
我在创建一种方法来保存文件中的按钮列表,然后在程序再次启动时将它们加载回我的程序时遇到问题。简而言之,如何将列表保存到文件中,然后再次将该文件作为列表加载回来?
I'm having a problem creating a method to save a list of buttons in a file and then load them back into my program when it starts again. Simply put, how do I save a list into a file and then load that file back up as a list again?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种可能性是使用:
然后您可以使用
将元素保存到文件中。您将必须迭代列表的所有元素。
编辑:我不知道是否可以使用类似的东西
,但你绝对应该尝试一下。
One possibility is to use:
Then you can use
to save an element to the file. You will have to iterate over all elements of the list.
EDIT: I dont't know whether it is possible to use something like
But you should definitely try it .