blob: cc778373737377341c3ac00ace703ef9ff2ec2fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
package com.keuin.kbackupfabric.util.backup.incremental;
import java.io.*;
import java.util.Objects;
public class ObjectCollectionSerializer {
public static ObjectCollection fromFile(File file) throws IOException {
Objects.requireNonNull(file);
ObjectCollection collection;
try (FileInputStream fileInputStream = new FileInputStream(file)) {
try (ObjectInputStream objectInputStream = new ObjectInputStream(fileInputStream)) {
collection = (ObjectCollection) objectInputStream.readObject();
} catch (ClassNotFoundException ignored) {
// this should not happen
return null;
}
}
return collection;
}
public static void toFile(ObjectCollection collection, File file) throws IOException {
Objects.requireNonNull(collection);
Objects.requireNonNull(file);
try (FileOutputStream fileOutputStream = new FileOutputStream(file)) {
try (ObjectOutputStream objectOutputStream = new ObjectOutputStream(fileOutputStream)) {
objectOutputStream.writeObject(collection);
}
}
}
}
|