Java 数据输入流 数据输出流

发布于 2024-10-11 23:36:43 字数 182 浏览 7 评论 0原文

我正在尝试使用 java.io.DataInputStream 将 person 类已写入的数据写入 .dat 文件中。然后,我想通过控制台使用 java.io.DataOutputStream 输出它。

我知道我只是创建变量然后使用扫描仪类,但最终的格式是什么?只是需要一些进展。

I'm trying to write in data already written by a person class into a .dat file using java.io.DataInputStream. Then, I want to output it using java.io.DataOutputStream through the console.

I know I just create the variables then use a scanner class, but what will the ultimate format be? Just need some headway.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

惟欲睡 2024-10-18 23:36:43

好吧,您可以序列化对象。默认序列化的问题在于,人类和其他应用程序无法很好地读取结果。为此,您必须使用类似 XML 编组 会产生一些你可能真正能读到的东西。

Well, you could serialize the objects. The problem with default serialization is that the outcome is not well readable by humans and other applications. For that you would have to use something like XML Marshalling which produces something you can perhaps actually read.

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