java 保存列表

发布于 2024-12-01 19:55:00 字数 87 浏览 0 评论 0原文

我在创建一种方法来保存文件中的按钮列表,然后在程序再次启动时将它们加载回我的程序时遇到问题。简而言之,如何将列表保存到文件中,然后再次将该文件作为列表加载回来?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千柳 2024-12-08 19:55:00

一种可能性是使用:

FileOutputStream file = new FileOutputStream("filename");

ObjectOutputStream out   = new ObjectOutputStream(file);

然后您可以使用

out.writeObject(ArrayOfObjects[i]);

将元素保存到文件中。您将必须迭代列表的所有元素。

编辑:我不知道是否可以使用类似的东西

out.writeObject(TheWholeList)

,但你绝对应该尝试一下。

One possibility is to use:

FileOutputStream file = new FileOutputStream("filename");

ObjectOutputStream out   = new ObjectOutputStream(file);

Then you can use

out.writeObject(ArrayOfObjects[i]);

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

out.writeObject(TheWholeList)

But you should definitely try it .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文