Java 数据输入流 数据输出流
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,您可以序列化对象。默认序列化的问题在于,人类和其他应用程序无法很好地读取结果。为此,您必须使用类似 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.