Java Lab 20: More I/O
This lab practices writing and reading objects, plus a few miscellaneous nio methods.
1. Create project Lab20. Download Lab20.zip; unzip it and copy the class into this project: the Cargo class and its children, the CargoSizeable interface, the CargoEnum, CargoContainer, and Lab20Main, which contains the main program. The Cargo class already implements CargoSizeable; make it also implement Serializable.
2. Add the method public ArrayList
3. Add a new class named CargoFileOperations with String data member filename and the following methods:
- overloaded constructor that sets filename
- public void writeList(ArrayList
- public ArrayList
Use try-catch blocks – one around the new’ing of the two streams, and one around the while loop. Don't forget to cast the objects read back to type Cargo. Return the ArrayList.
4. In the main program, after the call to cargoContainer.display(), create a CargoFileOperations object; write out the Cargo items using its writeList( ) method. Then read them back using its readList( ) method, and display the returned objects. You should verify that CargoContainer's display method showed the same data.
5. Add a public void display( ) method to CargoFileOperations. In it, declare a path object using Paths.get( ) on its filename and display) its toString(), absolute path, and getRoot. Declare a File object and display isDirectory( ) and getAbsolutePath( ). Finally, display the return values of these Files methods on the Path variable: isExecutable( ), isReadable(), isWriteable(). Make sure each display has a simple label, as in "isExecutable() returns true". Call display() at the end of main.
版权所有:编程辅导网 2021 All Rights Reserved 联系方式:QQ:99515681 微信:codinghelp 电子信箱:99515681@qq.com
免责声明:本站部分内容从网络整理而来,只供参考!如有版权问题可联系本站删除。