[Java] Remember to add the object to the file in java – Append object to file exist in java


After all Read the objects from the file in java, there are many issues that you need to write more data on file. Usually we just declare

1
FileOutputStream f = new FileOutputStream(fileName,true);

But after many attempts I still do not. Search for a while, apart from the extra stuff 2 such is true, then we need to override the method writeStreamHeader as follows:

1
2
3
4
5
ObjectOutputStream oStream = new ObjectOutputStream(f) {
    protected void writeStreamHeader() throws IOException {
        reset();
    }
};

1. Quick Code to test

code by nguyenvanquan7826 - ReadWriteObject.java
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package vietSource.net.IOFile;
 
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
 
public class ReadWriteObject {
 
    public static void main(String[] args) {
 
        File f = new File("student.dat");
        FileOutputStream fo;
        ObjectOutputStream oStream = null;
 
        // ghi file lan 1
        try {
            fo = new FileOutputStream(f);
            oStream = new ObjectOutputStream(fo);
 
            oStream.writeObject(new MyStudent("pham ha", 22));
            oStream.close();
        } catch (FileNotFoundException e1) {
            e1.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
 
        // ghi file lan 2
        try {
            fo = new FileOutputStream(f, true);
            oStream = new ObjectOutputStream(fo) {
                protected void writeStreamHeader() throws IOException {
                    reset();
                }
            };
            oStream.writeObject(new MyStudent("nguyenvanquan7826", 22));
            oStream.close();
        } catch (FileNotFoundException e1) {
            e1.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
 
        // doc file
        try {
            FileInputStream fis = new FileInputStream(f);
            ObjectInputStream inStream = new ObjectInputStream(fis);
 
            System.out.println(inStream.readObject());
            System.out.println(inStream.readObject());
 
            inStream.close();
        } catch (ClassNotFoundException e) {
            System.out.println("Class not found");
            e.printStackTrace();
        } catch (IOException e) {
            System.out.println("Error Read file");
            e.printStackTrace();
        }
    }
}
 
class MyStudent implements Serializable {
    String name;
    int age;
 
    public MyStudent(String name, int age) {
        super();
        this.name = name;
        this.age = age;
    }
 
    public String toString() {
        return "MyStudent [name=" + name + ", age=" + age + "]";
    }
}

2. Complete code should be used

Do not exist if no object file or files will be added error, therefore to ensure that all cases you see the following code:

code by nguyenvanquan7826 - ReadWriteObject.java
001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
079
080
081
082
083
084
085
086
087
088
089
090
091
092
093
094
095
096
097
098
099
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
package vietSource.net.IOFile;
 
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
 
public class ReadWriteObject {
 
    // kiem tra file co object hay khong
    public static boolean hasObject(File f) {
        // thu doc xem co object nao chua
        FileInputStream fi;
        boolean check = true;
        try {
            fi = new FileInputStream(f);
            ObjectInputStream inStream = new ObjectInputStream(fi);
            if (inStream.readObject() == null) {
                check = false;
            }
            inStream.close();
 
        } catch (FileNotFoundException e) {
            check = false;
        } catch (IOException e) {
            check = false;
        } catch (ClassNotFoundException e) {
            check = false;
            e.printStackTrace();
        }
        return check;
    }
 
    public static void write(MyStudent s) {
        try {
 
            File f = new File("student.dat");
            FileOutputStream fo;
            ObjectOutputStream oStream = null;
 
            // neu file chu ton tai thi tao file va ghi binh thuong
            if (!f.exists()) {
                fo = new FileOutputStream(f);
                oStream = new ObjectOutputStream(fo);
            } else { // neu file ton tai
 
                // neu chua co thi ghi binh thuong
                if (!hasObject(f)) {
                    fo = new FileOutputStream(f);
                    oStream = new ObjectOutputStream(fo);
                } else { // neu co roi thi ghi them vao
 
                    fo = new FileOutputStream(f, true);
 
                    oStream = new ObjectOutputStream(fo) {
                        protected void writeStreamHeader() throws IOException {
                            reset();
                        }
                    };
                }
            }
 
            oStream.writeObject(s);
            oStream.close();
 
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
 
    public static void read() {
        try {
            File f = new File("student.dat");
            FileInputStream fis = new FileInputStream(f);
            ObjectInputStream inStream = new ObjectInputStream(fis);
            Object s;
            int i = 0;
            while (true) {
                s = inStream.readObject();
                System.out.println(++i + ":" + s.toString());
            }
        } catch (ClassNotFoundException e) {
        } catch (IOException e) {
        }
    }
 
    public static void main(String[] args) {
 
        // ghi sinh vien 1
        write(new MyStudent("nguyenvanquan7826", 22));
 
        // ghi tiep sinh vien 2
        write(new MyStudent("phamha", 22));
 
        // doc file
        read();
 
    }
}
 
class MyStudent implements Serializable {
    String name;
    int age;
 
    public MyStudent(String name, int age) {
        super();
        this.name = name;
        this.age = age;
    }
 
    public String toString() {
        return "MyStudent [name=" + name + ", age=" + age + "]";
    }
}