-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPractice.java
More file actions
409 lines (380 loc) · 15.2 KB
/
Practice.java
File metadata and controls
409 lines (380 loc) · 15.2 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
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
package software;
import java.awt.TextField;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.text.NumberFormat;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTextArea;
import javax.swing.JTextField;
public class Practice implements ActionListener{
private JFrame frame;
private JPanel panel;
JLabel timer;
JTextArea exam;
JTextField answer;
JButton backToChooseParctice;
JButton front;
JButton back;
JButton handIn;
int practiceTime;
int nowPosition;
int num;
int right;
int wrong;
ChooseParctice chooseparctice;
String[] Answer;
ClockDispaly mt; // 倒計時模組
Practice(){
frame = new JFrame(); //create a frame
frame.setTitle("練習"); //sets title of frame
frame.setBounds(100, 50, 360, 350); //設定窗體座標以及打下
frame.setSize(400,400);
frame.setVisible(true); //設定窗體可見
panel = new JPanel();
frame.setContentPane(panel);
panel.setBounds(10,10,370,50);
panel.setLayout(null);
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
//宣告Connection物件
Connection con;
//驅動程式名
String driver = "com.mysql.cj.jdbc.Driver";
//URL指向要訪問的資料庫名
String url = "jdbc:mysql://localhost:3306/software";
//MySQL配置時的使用者名稱
String user = "root";
//MySQL配置時的密碼
String sqlpassword = "jackywoo";
//遍歷查詢結果集
try {
//載入驅動程式
Class.forName(driver);
//1.getConnection()方法,連線MySQL資料庫!!
con = DriverManager.getConnection(url,user,sqlpassword);
//2.建立statement類物件,用來執行SQL語句!!
Statement statement = con.createStatement();
//要執行的SQL語句
String SqlUpadateSignIn="update `user` set `signin`='0' where `account`='" + SignIn.userAccount +"';";
//3.ResultSet類,用來存放獲取的結果集!!
statement.executeUpdate(SqlUpadateSignIn);
System.exit(0);
} catch(ClassNotFoundException ex) {
//資料庫驅動類異常處理
System.out.println("Sorry,can`t find the Driver!");
ex.printStackTrace();
} catch(SQLException ex) {
//資料庫連線失敗異常處理
ex.printStackTrace();
}catch (Exception ex) {
// TODO: handle exception
ex.printStackTrace();
}
frame.dispose();
}
});
exam = new JTextArea();
exam.setBounds(6,54, 388, 84);
exam.setLineWrap(true); //設定自動換行
exam.setEditable(false);
frame.getContentPane().add(exam);
//宣告Connection物件
Connection con;
//驅動程式名
String driver = "com.mysql.cj.jdbc.Driver";
//URL指向要訪問的資料庫名
String url = "jdbc:mysql://localhost:3306/software";
//MySQL配置時的使用者名稱
String user = "root";
//MySQL配置時的密碼
String sqlpassword = "jackywoo";
//遍歷查詢結果集
try {
//載入驅動程式
Class.forName(driver);
//1.getConnection()方法,連線MySQL資料庫!!
con = DriverManager.getConnection(url,user,sqlpassword);
//2.建立statement類物件,用來執行SQL語句!!
Statement statement = con.createStatement();
String subject=ChooseParctice.Subjects+"試卷";
//要執行的SQL語句
String SqlSelectTime="select `time` from `" +subject +"` where `group` = '" + ChooseParctice.type + "';";
//3.ResultSet類,用來存放獲取的結果集!!
ResultSet rsTime = statement.executeQuery(SqlSelectTime);
if(rsTime.next()) {
String a =rsTime.getString(1);
practiceTime = Integer.parseInt(a);
}
String SqlSelectExam="select `question` from `" + ChooseParctice.Subjects +"` where `group` = '" + ChooseParctice.type + "';";
//3.ResultSet類,用來存放獲取的結果集!!
ResultSet rsExam = statement.executeQuery(SqlSelectExam);
if(rsExam.next()) {
String b =rsExam.getString("question");
exam.setText(b);
}
String SqlExamNumber="select `examnumber` from `" + ChooseParctice.Subjects +"試卷` where `group` = '" + ChooseParctice.type + "';";
//3.ResultSet類,用來存放獲取的結果集!!
ResultSet rsExamNumber = statement.executeQuery(SqlExamNumber);
if(rsExamNumber.next()) {
String c =rsExamNumber.getString(1);
num = Integer.parseInt(c);
}
} catch(ClassNotFoundException ex) {
//資料庫驅動類異常處理
System.out.println("Sorry,can`t find the Driver!");
ex.printStackTrace();
} catch(SQLException ex) {
//資料庫連線失敗異常處理
ex.printStackTrace();
}catch (Exception ex) {
// TODO: handle exception
ex.printStackTrace();
}
timer = new JLabel("時間");
timer.setBounds(102,6, 205, 36);
panel.add(timer);
answer = new JTextField();
answer.setBounds(83,150, 205, 48);
panel.add(answer);
Answer = new String[num];
for(int q=0; q<num; q++) {
Answer[q] = "";
}
backToChooseParctice = new JButton("取消");
backToChooseParctice.setBounds(6,210, 80, 23);
panel.add(backToChooseParctice);
backToChooseParctice.addActionListener(this);
front = new JButton("上一題");
front.setBounds(83,210, 80, 23);
panel.add(front);
front.addActionListener(this);
back = new JButton("下一題");
back.setBounds(175,210, 80, 23);
panel.add(back);
back.addActionListener(this);
handIn = new JButton("繳交");
handIn.setBounds(261,210, 80, 23);
panel.add(handIn);
handIn.addActionListener(this);
if(nowPosition == num) {
handIn.setEnabled(true);
}
mt = new ClockDispaly(timer, practiceTime); // 呼叫並設定倒計時的時間
}
@Override
public void actionPerformed(ActionEvent e) {
if(e.getSource() == backToChooseParctice) {
frame.dispose();
chooseparctice = new ChooseParctice();
}
if(e.getSource() == front) {
if(nowPosition == 0) {
JOptionPane.showMessageDialog(null, "這是第一題", "小提醒", JOptionPane.INFORMATION_MESSAGE);
}
else {
String ans = answer.getText();
Answer[nowPosition] = ans;
answer.setText("");
nowPosition--;
//宣告Connection物件
Connection con;
//驅動程式名
String driver = "com.mysql.cj.jdbc.Driver";
//URL指向要訪問的資料庫名
String url = "jdbc:mysql://localhost:3306/software";
//MySQL配置時的使用者名稱
String user = "root";
//MySQL配置時的密碼
String sqlpassword = "jackywoo";
//遍歷查詢結果集
try {
//載入驅動程式
Class.forName(driver);
//1.getConnection()方法,連線MySQL資料庫!!
con = DriverManager.getConnection(url,user,sqlpassword);
//2.建立statement類物件,用來執行SQL語句!!
Statement statement = con.createStatement();
//要執行的SQL語句
String b ="";
String SqlSelectExam="select `question` from `" + ChooseParctice.Subjects +"` where `group` = '" + ChooseParctice.type + "';";
//3.ResultSet類,用來存放獲取的結果集!!
ResultSet rsExam = statement.executeQuery(SqlSelectExam);
for(int i=0; i<=nowPosition; i++) {
if(rsExam.next()) {
b =rsExam.getString("question");
}
}
exam.setText(b);
} catch(ClassNotFoundException ex) {
//資料庫驅動類異常處理
System.out.println("Sorry,can`t find the Driver!");
ex.printStackTrace();
} catch(SQLException ex) {
//資料庫連線失敗異常處理
ex.printStackTrace();
}catch (Exception ex) {
// TODO: handle exception
ex.printStackTrace();
}
if(!Answer[nowPosition].equals("")) {
answer.setText(Answer[nowPosition]);
}
}
}
if(e.getSource() == back) {
if(nowPosition == num-1) {
JOptionPane.showMessageDialog(null, "這是最後一題", "小提醒", JOptionPane.INFORMATION_MESSAGE);
}
else {
String ans = answer.getText();
Answer[nowPosition] = ans;
answer.setText("");
nowPosition++;
//宣告Connection物件
Connection con;
//驅動程式名
String driver = "com.mysql.cj.jdbc.Driver";
//URL指向要訪問的資料庫名
String url = "jdbc:mysql://localhost:3306/software";
//MySQL配置時的使用者名稱
String user = "root";
//MySQL配置時的密碼
String sqlpassword = "jackywoo";
//遍歷查詢結果集
try {
//載入驅動程式
Class.forName(driver);
//1.getConnection()方法,連線MySQL資料庫!!
con = DriverManager.getConnection(url,user,sqlpassword);
//2.建立statement類物件,用來執行SQL語句!!
Statement statement = con.createStatement();
//要執行的SQL語句
String b ="";
String SqlSelectExam="select `question` from `" + ChooseParctice.Subjects +"` where `group` = '" + ChooseParctice.type + "';";
//3.ResultSet類,用來存放獲取的結果集!!
ResultSet rsExam = statement.executeQuery(SqlSelectExam);
for(int i=0; i<=nowPosition; i++) {
if(rsExam.next()) {
b =rsExam.getString("question");
}
}
exam.setText(b);
} catch(ClassNotFoundException ex) {
//資料庫驅動類異常處理
System.out.println("Sorry,can`t find the Driver!");
ex.printStackTrace();
} catch(SQLException ex) {
//資料庫連線失敗異常處理
ex.printStackTrace();
}catch (Exception ex) {
// TODO: handle exception
ex.printStackTrace();
}
if(!Answer[nowPosition].equals("")) {
answer.setText(Answer[nowPosition]);
}
}
}
if(e.getSource() == handIn) {
String ans = answer.getText();
Answer[nowPosition] = ans;
//宣告Connection物件
Connection con;
//驅動程式名
String driver = "com.mysql.cj.jdbc.Driver";
//URL指向要訪問的資料庫名
String url = "jdbc:mysql://localhost:3306/software";
//MySQL配置時的使用者名稱
String user = "root";
//MySQL配置時的密碼
String sqlpassword = "jackywoo";
//遍歷查詢結果集
try {
//載入驅動程式
Class.forName(driver);
//1.getConnection()方法,連線MySQL資料庫!!
con = DriverManager.getConnection(url,user,sqlpassword);
//2.建立statement類物件,用來執行SQL語句!!
Statement statement = con.createStatement();
//要執行的SQL語句
int ti = 0;
String SqlSelectAnswer="select `answer` from `" + ChooseParctice.Subjects +"` where `group` = '" + ChooseParctice.type + "';";
//3.ResultSet類,用來存放獲取的結果集!!
ResultSet rsAnswer = statement.executeQuery(SqlSelectAnswer);
while(rsAnswer.next()) {
String b =rsAnswer.getString("answer");
if(Answer[ti].equals(b)) {
right++;
}
else if(!Answer[ti].equals(b)) {
wrong++;
}
ti++;
}
} catch(ClassNotFoundException ex) {
//資料庫驅動類異常處理
System.out.println("Sorry,can`t find the Driver!");
ex.printStackTrace();
} catch(SQLException ex) {
//資料庫連線失敗異常處理
ex.printStackTrace();
}catch (Exception ex) {
// TODO: handle exception
ex.printStackTrace();
}
int sum = right + wrong;
int grade = 100 / sum * right;
String Right = Integer.toString(right);
String Sum= Integer.toString(sum);
String Grade= Integer.toString(grade);
JOptionPane.showMessageDialog(null, "答對" + Right +"題 共" + Sum +"題 分數: " + Grade, "成績", JOptionPane.INFORMATION_MESSAGE);
frame.dispose();
chooseparctice = new ChooseParctice();
}
}
class ClockDispaly extends Thread {// 設定Thread考試倒計時模組
private JLabel lefttimer;
private int practiceTime;
public ClockDispaly(JLabel lt, int time) {
lefttimer = lt;
practiceTime = time * 60;
}
public void run() {
NumberFormat numberFormat = NumberFormat.getInstance();// 控制時間的顯示格式
numberFormat.setMinimumIntegerDigits(2);// 設定數值的整數部分允許的最小位數
int h, m, s;// 定義時分秒
while (practiceTime >= 0) {
h = practiceTime / 3600;
m = practiceTime % 3600 / 60;
s = practiceTime % 60;
StringBuffer stringBuffer = new StringBuffer("");
// 增加到timer標籤
stringBuffer.append(
"考試剩餘時間為:" + numberFormat.format(h) + ":" + numberFormat.format(m) + ":" + numberFormat.format(s));
lefttimer.setText(stringBuffer.toString());
try {
Thread.sleep(1000);// 延時一秒
} catch (Exception e) {
// ignore error
}
practiceTime = practiceTime - 1;
}
if (practiceTime <= 0) {
JOptionPane.showMessageDialog(null, "時間已到,請按繳交", "注意",JOptionPane.ERROR_MESSAGE);
front.setEnabled(false);
back.setEnabled(false);
}
}
}
}