-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWriteFileAA.java
More file actions
61 lines (57 loc) · 2.16 KB
/
WriteFileAA.java
File metadata and controls
61 lines (57 loc) · 2.16 KB
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
import java.io.FileWriter; // Import the FileWriter class
import java.io.BufferedWriter; // Import the FileWriter class
import java.io.IOException; // Import the IOException class to handle errors
public class WriteFileAA {
public static void writeInt(Integer x, String y){
try {
FileWriter myWriter = new FileWriter(y, true);
BufferedWriter bw = new BufferedWriter(myWriter);
bw.write(x + " satuan luas");
bw.newLine();
bw.close();
System.out.println("File kamu sukses ditulis!");
} catch (IOException e) {
System.out.println("Ada error nih, afaan tuh??");
e.printStackTrace();
}
}
public static void writeDouble(Double x, String y){
try {
FileWriter myWriter = new FileWriter(y, true);
BufferedWriter bw = new BufferedWriter(myWriter);
bw.write(x + " satuan luas");
bw.newLine();
bw.close();
System.out.println("File kamu sukses ditulis!");
} catch (IOException e) {
System.out.println("Ada error nih, afaan tuh??");
e.printStackTrace();
}
}
public static void writeIntK(Integer x, String y){
try {
FileWriter myWriter = new FileWriter(y, true);
BufferedWriter bw = new BufferedWriter(myWriter);
bw.write(x + " satuan keliling");
bw.newLine();
bw.close();
System.out.println("File kamu sukses ditulis!");
} catch (IOException e) {
System.out.println("Ada error nih, afaan tuh??");
e.printStackTrace();
}
}
public static void writeDoubleK(Double x, String y){
try {
FileWriter myWriter = new FileWriter(y, true);
BufferedWriter bw = new BufferedWriter(myWriter);
bw.write(x + " satuan keliling");
bw.newLine();
bw.close();
System.out.println("File kamu sukses ditulis!");
} catch (IOException e) {
System.out.println("Ada error nih, afaan tuh??");
e.printStackTrace();
}
}
}