COMP2396
Loading...
Searching...
No Matches
BoxTestDrive.java
Go to the documentation of this file.
1import java.io.*;
2
3public class BoxTestDrive {
4 public static void main(String[] args) {
5 Box box = new Box();
6 box.setWidth(70);
7 box.setHeight(30);
8
9 try {
10 FileOutputStream fs = new FileOutputStream("Box.sav");
11 ObjectOutputStream os = new ObjectOutputStream(fs);
12 os.writeObject(box);
13 os.close();
14 } catch (Exception ex) {
15 ex.printStackTrace();
16 }
17 }
18}
static void main(String[] args)