forked from ashik5757/ScoreBoard-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLaunchApp.java
187 lines (99 loc) · 4.26 KB
/
LaunchApp.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
import FXML_FIle.LoadingPageControl;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Alert;
import javafx.scene.control.ButtonType;
import javafx.scene.image.Image;
import javafx.stage.Stage;
import java.io.*;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.ArrayList;
public class LaunchApp extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) throws IOException, InterruptedException {
FXMLLoader loader = new FXMLLoader(getClass().getResource("FXML_FIle/LoadingPage.fxml"));
Parent root = loader.load();
LoadingPageControl loadingPageControl = loader.getController();
loadingPageControl.setStage(primaryStage);
Image icon = new Image("file:Final Logo.png"); // For IDE
//Image icon = new Image(getClass().getResourceAsStream("/Final Logo.png")); // For JAR
createFile();
primaryStage.getIcons().add(icon);
primaryStage.setTitle("Cricket Live Scoreboard");
primaryStage.setScene(new Scene(root));
primaryStage.setX(600);
primaryStage.setY(100);
primaryStage.show();
primaryStage.setOnCloseRequest(e -> {
e.consume();
logOut(primaryStage);
});
}
public void logOut(Stage stage) {
Alert alert = new Alert(Alert.AlertType.CONFIRMATION);
alert.setTitle("Log Out");
alert.setHeaderText("You are about to EXIT");
alert.setContentText("Are you sure??");
if (alert.showAndWait().get() == ButtonType.OK) {
stage.close();
}
}
public void createFile() throws IOException {
File teamFile = new File("/ScoreBoard/data/AllTeamName.txt");
File playerFile = new File("/ScoreBoard/data/AllPlayerName.txt");
if (!teamFile.exists()) {
//System.out.println("Team Don't Exists");
Path path = Paths.get("/ScoreBoard/data/");
Files.createDirectories(path);
PrintWriter output1 = new PrintWriter(teamFile);
for (String names : getTeamList()) {
output1.println(names);
}
output1.close();
}
if (!playerFile.exists()) {
//System.out.println("Player Don't Exists");
Path path = Paths.get("/ScoreBoard/data/");
Files.createDirectories(path);
PrintWriter output2 = new PrintWriter(playerFile);
for (String names : getPlayerList()) {
output2.println(names);
}
output2.close();
}
//File databaseFile = new File("/ScoreBoard/data/AllTeamName.txt");
}
public ArrayList<String> getTeamList() throws IOException {
ArrayList<String> list = new ArrayList<String>();
InputStream in = new FileInputStream("AllTeamName.txt"); // For IDE
//InputStream in = getClass().getResourceAsStream("/AllTeamName.txt"); // For JAR
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
String line;
while ((line=reader.readLine())!=null) {
list.add(line);
}
in.close();
reader.close();
return list;
}
public ArrayList<String> getPlayerList() throws IOException {
ArrayList<String> list = new ArrayList<String>();
InputStream in = new FileInputStream("AllPlayerName.txt"); // For IDE
//InputStream in = getClass().getResourceAsStream("/AllPlayerName.txt"); // For JAR
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
String line;
while ((line=reader.readLine())!=null) {
list.add(line);
}
in.close();
reader.close();
return list;
}
}