Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,我目前正在开发一个库存控制系统,并且我可以使用它,但是我想添加一个功能,以便它可以将链表保存到文件中,并有一个方法可以做到这一点,称为 saveData() 然后我有另一个方法叫做loadData() 将文件名作为参数。
将要创建的方法必须使用对象流来实现。
这是什么意思?
您可以使用FileOutputStreamandFileInputStream对文件进行写入和读取。
FileOutputStream
FileInputStream
序列化要保存在文件中的对象,使用 写入文件writeObject()并使用 读取readObject()。
writeObject()
readObject()