-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSVwriter.java
162 lines (148 loc) · 3.6 KB
/
CSVwriter.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
/**
* Sachin
* September 2019
*
* Helper class to append text to a csv file
*/
public class CSVwriter
{
public PrintWriter p;
public CSVwriter(String name)
{
FileWriter fw = null;
BufferedWriter bw = null;
try
{
fw = new FileWriter(name + ".csv", true);
bw = new BufferedWriter(fw);
p = new PrintWriter(bw, true);
System.out.println("Successfully created csv writer: " + name);
}
catch (IOException e)
{
e.printStackTrace();
}
}
/**
* Clear all content in a file and initalize it with a header value, then create CSVwriter
*
* @param filename target file without extension to be cleared
* @param init initalization header value
* @return new CSVwriter
*/
public static CSVwriter create_new(String filename, String init)
{
try
{
PrintWriter pw = new PrintWriter(filename + ".csv");
pw.println(init);
pw.close();
System.out.println("Successfully initalized file: " + filename);
}
catch (IOException e)
{
e.printStackTrace();
}
return new CSVwriter(filename);
}
/**
* Clear all content in a file create a new CSVwriter
*
* @param filename target file without extension to be cleared
* @return new CSVwriter
*/
public static CSVwriter create_new(String filename)
{
try
{
PrintWriter pw = new PrintWriter(filename + ".csv");
pw.close();
System.out.println("Successfully cleared file: " + filename);
}
catch (IOException e)
{
e.printStackTrace();
}
return new CSVwriter(filename);
}
/**
* Clear all content in a file and initalize it with a header value
*
* @param filename target file to be cleared
* @param init initalization header value
*/
public static void reset(String filename, String init)
{
try
{
PrintWriter pw = new PrintWriter(filename);
pw.println(init);
pw.close();
System.out.println("Successfully reset file: " + filename);
}
catch (IOException e)
{
e.printStackTrace();
}
}
/**
* Print an item followed by a new line to output stream
*
* @param o any Object
*/
public void println(Object o)
{
p.println(o.toString());
}
/**
* Print an item to output stream
*
* @param o any Object
*/
public void print(Object o)
{
p.print(o.toString());
}
/**
* Write a csv row to output stream
*
* @param o list of any Object
*/
public void row(Object... o)
{
for (int i = 0; i < o.length-1; i++)
{
print(o[i].toString());
print(",");
}
print(o[o.length-1].toString());
println("");
}
/**
* Write a csv row to output stream
*
* @param o list of doubles
*/
public void row(double... o)
{
for (int i = 0; i < o.length-1; i++)
{
print(o[i]);
print(",");
}
print(o[o.length-1]);
println("");
}
/**
* Close output stream
*
*/
public void close()
{
p.close();
}
}