-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCarDriver.java
412 lines (348 loc) · 12.3 KB
/
CarDriver.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
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
409
410
411
412
import java.awt.Toolkit;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.regex.Pattern;
import java.awt.Image;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
class CarDriver {
//file_number:unique
private String name,nationality,addr; //"Chinese" rather than "China"
private int birth_yy,birth_mm,birth_dd;
private String driving_type;
private int first_rece_yy,first_rece_mm,first_rece_dd;
private int valid_yy,valid_mm,valid_dd,valid_time;
private String file_number;
//图片放置在对应文件夹image下,该文件夹设置为只能通过特定程序修改
private String image_path;
CarDriver() {
}
CarDriver(String name, String file_number) {
this.name=name;
this.file_number=file_number;
}
CarDriver(String name, String nationality, String addr,
int birth_yy, int birth_mm, int birth_dd, String driving_type,
int first_rece_yy, int first_rece_mm, int first_rece_dd,
int valid_yy, int valid_mm, int valid_dd, int valid_time,
String file_number, String image_path) {
this.name=name; this.nationality=nationality; this.addr=addr;
this.birth_yy=birth_yy; this.birth_mm=birth_mm; this.birth_dd=birth_dd; this.driving_type=driving_type;
this.first_rece_yy=first_rece_yy; this.first_rece_mm=first_rece_mm; this.first_rece_dd=first_rece_dd;
this.valid_yy=valid_yy; this.valid_mm=valid_mm; this.valid_dd=valid_dd; this.valid_time=valid_time;
this.file_number=file_number; this.image_path=image_path;
}
public int hashCode() {
return file_number.hashCode();
}
public boolean equals(CarDriver d) {
return name.equals(d.name) && nationality.equals(d.nationality) && addr.equals(d.addr)
&& birth_yy==d.birth_yy && birth_mm==d.birth_mm && birth_dd==d.birth_dd && driving_type.equals(d.driving_type)
&& first_rece_yy==d.first_rece_yy && first_rece_mm==d.first_rece_mm && first_rece_dd==d.first_rece_dd
&& valid_yy==d.valid_yy && valid_mm==d.valid_mm && valid_dd==d.valid_dd && valid_time==d.valid_time
&& file_number.equals(d.file_number) && image_path.equals(d.image_path) ;
}
public String toString() {
String str="";
str = str + "name : " + this.getName() + "\n";
str = str + "nationality : " + this.getNationality() + "\n";
str = str + "address : " + this.getAddr() + "\n";
str = str + "birth : " + this.getBirth() + "\n";
str = str + "driving_type : " + this.getDriving_type() + "\n";
str = str + "license valid in : " + this.getFirst_rece() + "\n";
str = str + "license valid end : " + this.getValid() + "\n";
str = str + "license valid time : " + this.getValid_time() + "\n";
str = str + "file_number : " + this.getFile_number() + "\n";
str = str + "image_path : " + this.getImage_path() + "\n";
return str;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getNationality() {
return nationality;
}
public void setNationality(String nationality) {
this.nationality = nationality;
}
public String getAddr() {
return addr;
}
public void setAddr(String addr) {
this.addr = addr;
}
public String getBirth() {
return String.format("%02d",birth_yy)+"-"+String.format("%02d",birth_mm)+"-"+String.format("%02d",birth_dd);
//return Integer.toString(birth_yy)+"-"+Integer.toString(birth_mm)+"-"+Integer.toString(birth_dd);
}
public void setBirth(String birth) {
String[] re=birth.split("-");
this.birth_yy=Integer.parseInt(re[0]);
this.birth_mm=Integer.parseInt(re[1]);
this.birth_dd=Integer.parseInt(re[2]);
}
//(int birth_yy, int birth_mm, int birth_dd){this.birth_yy=birth_yy; this.birth_mm=birth_mm; this.birth_dd=birth_dd;}
public int getBirth_yy() {
return birth_yy;
}
public void setBirth_yy(int birth_yy) {
this.birth_yy = birth_yy;
}
public int getBirth_mm() {
return birth_mm;
}
public void setBirth_mm(int birth_mm) {
this.birth_mm = birth_mm;
}
public int getBirth_dd() {
return birth_dd;
}
public void setBirth_dd(int birth_dd) {
this.birth_dd = birth_dd;
}
public String getDriving_type() {
return driving_type;
}
public void setDriving_type(String driving_type) {
this.driving_type = driving_type;
}
public String getFirst_rece() {
//return Integer.toString(first_rece_yy)+"-"+Integer.toString(first_rece_mm)+"-"+Integer.toString(first_rece_dd);
return String.format("%02d",first_rece_yy)+"-"+String.format("%02d",first_rece_mm)+"-"+String.format("%02d",first_rece_dd);
}
public void setFirst_rece(String first_rece) {
String[] re=first_rece.split("-");
this.first_rece_yy=Integer.parseInt(re[0]);
this.first_rece_mm=Integer.parseInt(re[1]);
this.first_rece_dd=Integer.parseInt(re[2]);
}
//(int first_rece_yy, int first_rece_mm, int first_rece_dd){this.first_rece_yy=first_rece_yy; this.first_rece_mm=first_rece_mm; this.first_rece_dd=first_rece_dd;}
public int getFirst_rece_yy() {
return first_rece_yy;
}
public void setFirst_rece_yy(int first_rece_yy) {
this.first_rece_yy = first_rece_yy;
}
public int getFirst_rece_mm() {
return first_rece_mm;
}
public void setFirst_rece_mm(int first_rece_mm) {
this.first_rece_mm = first_rece_mm;
}
public int getFirst_rece_dd() {
return first_rece_dd;
}
public void setFirst_rece_dd(int first_rece_dd) {
this.first_rece_dd = first_rece_dd;
}
public String getValid(){
return String.format("%02d",valid_yy)+"-"+String.format("%02d",valid_mm)+"-"+String.format("%02d",valid_dd);
//return Integer.toString(valid_yy)+"-"+Integer.toString(valid_mm)+"-"+Integer.toString(valid_dd);
}
public void setValid(String valid) {
String[] re=valid.split("-");
this.valid_yy=Integer.parseInt(re[0]);
this.valid_mm=Integer.parseInt(re[1]);
this.valid_dd=Integer.parseInt(re[2]);
}
//(int valid_yy, int valid_mm, int valid_dd){this.valid_yy=valid_yy; this.valid_mm=valid_mm; this.valid_dd=valid_dd;}
public int getValid_yy() {
return valid_yy;
}
public void setValid_yy(int valid_yy) {
this.valid_yy = valid_yy;
}
public int getValid_mm() {
return valid_mm;
}
public void setValid_mm(int valid_mm) {
this.valid_mm = valid_mm;
}
public int getValid_dd() {
return valid_dd;
}
public void setValid_dd(int valid_dd) {
this.valid_dd = valid_dd;
}
public int getValid_time() {
return valid_time;
}
public void setValid_time(int valid_time) {
this.valid_time = valid_time;
}
public String getFile_number() {
return file_number;
}
public void setFile_number(String file_number) {
this.file_number = file_number;
}
public String getImage_path() {
return image_path;
}
public void setImage_path(String image_path) {
this.image_path = image_path;
}
public static boolean iflegalName(String str) {
return Pattern.matches("^\\S{1,20}$", str);
//武绍波
}
public static boolean iflegalNationality(String str) {
return Pattern.matches("^中国|中国香港|中国澳门|中国台湾$", str);
//中国
}
public static boolean iflegalBirth(String str) {
return Pattern.matches("^[0-9]{4}-[0-9]{2}-[0-9]{2}$", str);
//1992-01-18
}
public static boolean iflegalAddr(String str) {
return Pattern.matches("^\\S{1,50}$", str);
//广东省阳西县上洋镇居民委员会建设中路65号
}
public static boolean iflegalDriving_type(String str) {
return Pattern.matches("^[A-Z][0-9]$", str);
//C1
}
public static boolean iflegalFirst_rece(String str) {
return Pattern.matches("^[0-9]{4}-[0-9]{2}-[0-9]{2}$", str);
//2012-12-20
}
public static boolean iflegalValid(String str) {
return Pattern.matches("^[0-9]{4}-[0-9]{2}-[0-9]{2}$", str);
//2012-12-20
}
public static boolean iflegalValid_time(String str) throws NumberFormatException {
try {
double value = Double.parseDouble(str);
if (value>0 && value<=10)
return true;
else
return false;
} catch(NumberFormatException e1) {
throw new NumberFormatException("有效期限");
}
//3
}
public static boolean iflegalFile_number(String str) {
return Pattern.matches("^[0-9]{12}$", str);
//440710418572
}
public static boolean iflegalImage_path(String str) {
File f=new File(str);
if (f.exists() && Pattern.matches("^\\S{1,50}$", str))
return true;
else
return false;
}
public void getTable(ResultSet rs) throws SQLException {
name=rs.getString(1);
nationality=rs.getString(2);
addr=rs.getString(3);
birth_yy=rs.getInt(4);
birth_mm=rs.getInt(5);
birth_dd=rs.getInt(6);
driving_type=rs.getString(7);
first_rece_yy=rs.getInt(8);
first_rece_mm=rs.getInt(9);
first_rece_dd=rs.getInt(10);
valid_yy=rs.getInt(11);
valid_mm=rs.getInt(12);
valid_dd=rs.getInt(13);
valid_time=rs.getInt(14);
file_number=rs.getString(15);
image_path=rs.getString(16);
}
public String insertTable() {
//用trim:String类型进行了初始化(etc. str=new String() str=str1)
String str="insert into DRIVER values('"+
name.trim()+"','"+nationality.trim()+"','"+addr.trim()+"',"+
Integer.toString(birth_yy).trim()+","+Integer.toString(birth_mm).trim()+","+Integer.toString(birth_dd).trim()+",'"+
driving_type.trim()+"',"+
Integer.toString(first_rece_yy).trim()+","+Integer.toString(first_rece_mm).trim()+","+Integer.toString(first_rece_dd).trim()+","+
Integer.toString(valid_yy).trim()+","+Integer.toString(valid_mm).trim()+","+Integer.toString(valid_dd).trim()+","+
Integer.toString(valid_time).trim()+",'"+file_number+"','"+image_path.replace("\\","\\\\").trim()+"',null)";
// System.out.println(str);
return str;
}
public String updateTable() {
String str="update DRIVER set "+
"nationality='"+nationality.trim()+"',"+
"addr='"+addr.trim()+"',"+
"birth_yy="+Integer.toString(birth_yy).trim()+","+
"birth_mm="+Integer.toString(birth_mm).trim()+","+
"birth_dd="+Integer.toString(birth_dd).trim()+","+
"driving_type='"+driving_type.trim()+"',"+
"first_rece_yy="+Integer.toString(first_rece_yy).trim()+","+
"first_rece_mm="+Integer.toString(first_rece_mm).trim()+","+
"first_rece_dd="+Integer.toString(first_rece_dd).trim()+","+
"valid_yy="+Integer.toString(valid_yy).trim()+","+
"valid_mm="+Integer.toString(valid_mm).trim()+","+
"valid_dd="+Integer.toString(valid_dd).trim()+","+
"valid_time="+Integer.toString(valid_time).trim()+","+
"image_path='"+image_path.replace("\\","\\\\").trim()+"'"+
" where "+
"name='"+name.trim()+"' and "+
"file_number="+file_number;
// System.out.println(str);
return str;
}
public boolean ifcorrect(String name, String nationality, String birth, String addr, String driving_type,
String first_rece, String valid, String valid_time, String file_number, String image_path) {
try {
if (!iflegalName(name))
throw new Exception("姓名");
if (!iflegalNationality(nationality))
throw new Exception("国籍");
if (!iflegalBirth(birth))
throw new Exception("出生日期");
if (!iflegalAddr(addr))
throw new Exception("居住地址");
if (!iflegalDriving_type(driving_type))
throw new Exception("驾驶车型");
if (!iflegalFirst_rece(first_rece))
throw new Exception("初次领证日期");
if (!iflegalValid(valid))
throw new Exception("有效日期");
if (!iflegalValid_time(valid_time))
throw new Exception("有效期限");
if (!iflegalFile_number(file_number))
throw new Exception("档案编号");
if (!iflegalImage_path(image_path))
throw new FileNotFoundException();
return true;
} catch(NumberFormatException e1) {
JOptionPane.showMessageDialog(null, e1.getMessage()+" : 不是数字", "信息", JOptionPane.CLOSED_OPTION);
} catch(FileNotFoundException e2) {
JOptionPane.showMessageDialog(null, "图片不存在", "信息", JOptionPane.CLOSED_OPTION);
} catch(IOException e3) {
JOptionPane.showMessageDialog(null, "文件操作错误", "信息", JOptionPane.CLOSED_OPTION);
} catch(Exception e4) {
JOptionPane.showMessageDialog(null, e4.getMessage()+"格式错误", "信息", JOptionPane.CLOSED_OPTION);
}
return false;
}
}
class DisplayImage {
public static void show(String addr) {
Toolkit imgtool=Toolkit.getDefaultToolkit();
Image myimg=imgtool.getImage(addr);
showInFrame(myimg);
}
public static void showInFrame(Image img) {
JFrame frame=new JFrame("image");
ImageIcon imgicon=new ImageIcon(img);
frame.setSize(imgicon.getIconWidth(), imgicon.getIconHeight());
JLabel label=new JLabel();
label.setIcon(imgicon);
frame.add(label);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}