-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreatePaper.java
More file actions
231 lines (204 loc) · 9.01 KB
/
CreatePaper.java
File metadata and controls
231 lines (204 loc) · 9.01 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
package software;
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.SQLIntegrityConstraintViolationException;
import java.sql.Statement;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.border.EmptyBorder;
public class CreatePaper implements ActionListener{
private JFrame frame;
private JPanel panel;
JTextField inputGroup;
JTextField inputTime;
JTextField inputExamNumber;
JTextField inputExamLevel;
JTextField inputFinishedNumber;
private JButton backToExamPaperManage;
private JButton add;
ExamPaperManage exampapermanage;
CreatePaper(){
frame = new JFrame(); //create a frame
frame.setTitle("增加試卷"); //sets title of frame
frame.setBounds(100, 50, 360, 350); //設定窗體座標以及打下
frame.setResizable(false); //設定窗體大小不可以改變
frame.setVisible(true); //設定窗體可見
panel = new JPanel();
frame.setContentPane(panel);
panel.setBorder(new EmptyBorder(5, 5, 5, 5));
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);
} 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();
}
});
JLabel group = new JLabel("考試名稱:");
group.setBounds(80,32, 60, 28);
panel.add(group);
inputGroup = new JTextField();
inputGroup.setBounds(139,33, 161, 25);
panel.add(inputGroup);
JLabel time = new JLabel("時間:");
time.setBounds(80,62, 60, 28);
panel.add(time);
inputTime = new JTextField();
inputTime.setBounds(139,63, 161, 25);
panel.add(inputTime);
JLabel examNumber = new JLabel("題目數量:");
examNumber.setBounds(80,92, 60, 28);
panel.add(examNumber);
inputExamNumber= new JTextField();
inputExamNumber.setBounds(139,93, 161, 25);
panel.add(inputExamNumber);
JLabel ExamLevel = new JLabel("題目難易:");
ExamLevel.setBounds(80,122, 60, 28);
panel.add(ExamLevel);
inputExamLevel = new JTextField();
inputExamLevel.setBounds(139,123, 161, 25);
panel.add(inputExamLevel);
JLabel finishedNumber = new JLabel("完成人數:");
finishedNumber.setBounds(80,152, 60, 28);
panel.add(finishedNumber);
inputFinishedNumber = new JTextField();
inputFinishedNumber.setBounds(139,153, 161, 25);
panel.add(inputFinishedNumber);
backToExamPaperManage = new JButton("取消");
backToExamPaperManage.setBounds(80,203, 80, 23);
panel.add(backToExamPaperManage);
backToExamPaperManage.addActionListener(this);
add = new JButton("新增");
add.setBounds(190,203, 80, 23);
frame.getContentPane().add(add);
add.addActionListener(this);
}
@Override
public void actionPerformed(ActionEvent e) {
if(e.getSource() == backToExamPaperManage) {
frame.dispose();
}
if(e.getSource() == add) {
String inGroup = inputGroup.getText();
int check = 0;
if(inGroup.equals("") || inGroup.equals(" ") || inGroup.equals(null)) {
check = 1;
JOptionPane.showMessageDialog(null, "考試名稱不可為空", "錯誤訊息", JOptionPane.ERROR_MESSAGE);
}
String inTime = inputTime.getText();
if(inTime.equals("") || inTime.equals(" ") || inTime.equals(null)) {
check = 1;
JOptionPane.showMessageDialog(null, "時間不可為空", "錯誤訊息", JOptionPane.ERROR_MESSAGE);
}
String inExamNumber = inputExamNumber.getText();
if(inExamNumber.equals("") || inExamNumber.equals(" ") || inExamNumber.equals(null)) {
check = 1;
JOptionPane.showMessageDialog(null, "題目數量不可為空", "錯誤訊息", JOptionPane.ERROR_MESSAGE);
}
if(inExamNumber.charAt(0) == '-') {
check = 1;
JOptionPane.showMessageDialog(null, "題目數量不可為負", "錯誤訊息", JOptionPane.ERROR_MESSAGE);
}
String inExamLevel = inputExamLevel.getText();
if(inExamLevel.equals("") || inExamLevel.equals(" ") || inExamLevel.equals(null)) {
check = 1;
JOptionPane.showMessageDialog(null, "題目難易不可為空", "錯誤訊息", JOptionPane.ERROR_MESSAGE);
}
String inFinishedNumber = inputFinishedNumber.getText();
if(inFinishedNumber.equals("") || inFinishedNumber.equals(" ") || inFinishedNumber.equals(null)) {
check = 1;
JOptionPane.showMessageDialog(null, "完成人數不可為空", "錯誤訊息", JOptionPane.ERROR_MESSAGE);
}
//宣告Connection物件
Connection con;
//驅動程式名
String driver = "com.mysql.cj.jdbc.Driver";
//URL指向要訪問的資料庫名
String url = "jdbc:mysql://localhost:3306/software?sessionVariables=sql_mode='NO_ENGINE_SUBSTITUTION'&jdbcCompliantTruncation=false";
//MySQL配置時的使用者名稱
String user = "root";
//MySQL配置時的密碼
String LoginPassword = "jackywoo";
//遍歷查詢結果集
if(check == 0) {
try {
//載入驅動程式
Class.forName(driver);
//1.getConnection()方法,連線MySQL資料庫!!
con = DriverManager.getConnection(url,user,LoginPassword);
//2.建立statement類物件,用來執行SQL語句!!
Statement statement = con.createStatement();
//要執行的SQL語句
String sql0="SET SQL_SAFE_UPDATES = 0;";
//3.ResultSet類,用來存放獲取的結果集!!
statement.execute(sql0);
String sqlAdd="insert into `"+ ExamPaperManage.Subject +"` values('" + inGroup + "','" + inTime + "','" + inExamNumber + "','" + inExamLevel + "','" + inFinishedNumber +"');";
statement.executeUpdate(sqlAdd);
JOptionPane.showMessageDialog(null, "新增成功", "成功", JOptionPane.INFORMATION_MESSAGE);
inputGroup.setText(" ");
inputTime.setText(" ");
inputExamNumber.setText(" ");
inputExamLevel.setText(" ");
inputFinishedNumber.setText(" ");
String sql1="SET SQL_SAFE_UPDATES = 1;";
//3.ResultSet類,用來存放獲取的結果集!!
statement.execute(sql1);
} catch(ClassNotFoundException ex) {
//資料庫驅動類異常處理
System.out.println("Sorry,can`t find the Driver!");
ex.printStackTrace();
}catch (SQLIntegrityConstraintViolationException ex) {
ex.printStackTrace();
} catch(SQLException ex) {
//資料庫連線失敗異常處理
JOptionPane.showMessageDialog(null, "新增失敗", "失敗", JOptionPane.ERROR_MESSAGE);
ex.printStackTrace();
}catch (Exception ex) {
// TODO: handle exception
ex.printStackTrace();
}
}
}
}
}