-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileOperation.java
101 lines (93 loc) · 2.3 KB
/
FileOperation.java
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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import java.io.*;
import java.nio.file.*;
public class FileOperation
{
public static void saveToFile(Object obj, String path)
{
try
{
File dir = new File("data");
if(!dir.exists())
dir.mkdir();
File target = new File(dir, path);
ObjectOutputStream objectOutputStream = new ObjectOutputStream(new FileOutputStream(target.getPath()));
objectOutputStream.writeObject(obj);
objectOutputStream.flush();
objectOutputStream.close();
}
catch(FileNotFoundException e)
{
System.out.println("Warning (FileOperation.java) " + e.getMessage() + " Creating a new file>");
e.printStackTrace();
}
catch(Exception e)
{
System.out.println("Error (FileOperation.java) " + e.getMessage());
e.printStackTrace();
}
}
public static Object readFromFile(String path)
{
try
{
File dir = new File("data");
if(!dir.exists())
dir.mkdir();
File target = new File(dir, path);
ObjectInputStream objectInputStream = new ObjectInputStream(new FileInputStream(target.getPath()));
return objectInputStream.readObject();
}
catch(FileNotFoundException e)
{
System.out.println("Warning (FileOperation.java) " + e.getMessage());
return null;
}
catch(Exception e)
{
System.out.println("Error (FileOperation.java) " + e.getMessage());
e.printStackTrace();
return null;
}
}
public static File uploadFile(File src, String subdir)
{
try
{
File dir = new File(subdir);
if(!dir.exists())
dir.mkdir();
File dest = new File(dir, src.getName());
Files.copy(src.toPath(), dest.toPath(), StandardCopyOption.REPLACE_EXISTING);
return dest;
}
catch(NullPointerException e)
{
System.out.println("Error (FileOperation.java) " + e.getMessage());
e.printStackTrace();
return null;
}
catch(Exception e)
{
System.out.println("Error (FileOperation.java) " + e.getMessage());
e.printStackTrace();
return null;
}
}
public static void downloadFile(File src, File dest)
{
try
{
Files.copy(src.toPath(), dest.toPath(), StandardCopyOption.REPLACE_EXISTING);
}
catch(NullPointerException e)
{
System.out.println("Error (FileOperation.java) " + e.getMessage());
e.printStackTrace();
}
catch(Exception e)
{
System.out.println("Error (FileOperation.java) " + e.getMessage());
e.printStackTrace();
}
}
}