ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
package com.vci.client.omd.versionrule.util;
//package plm.bs.omd.versionrule.client.util;
//
//import java.util.List;
//
//import javax.swing.JButton;
//import javax.swing.JLabel;
//import javax.swing.JOptionPane;
//import javax.swing.JPanel;
//import javax.swing.JScrollPane;
//import javax.swing.JTextArea;
//import javax.swing.JTextField;
//import javax.swing.JTree;
//import javax.swing.tree.DefaultMutableTreeNode;
//
//import org.dom4j.Document;
//import org.dom4j.DocumentHelper;
//import org.dom4j.Element;
//
//import plm.bs.omd.versionrule.client.ClientStart;
//import plm.bs.omd.versionrule.client.ui.AttribPanel;
//import plm.corba.versionRuleManager.VersionRule;
//
//import com.vci.corba.common.VCIError;
//
//public class Algorithm {
//    
//    /**
//     * 
//     */
//    @SuppressWarnings("unused")
//    private static final long serialVersionUID = 1L;
//    static String no1=null,no2=null,no3=null,no4=null,no5=null,no6=null,no7=null;
//    @SuppressWarnings("unused")
//    private static VersionRule versionRule = null;
//    //定义文本框,用于用户输入数据
//    @SuppressWarnings("unused")
//    private static JTextField jtf1=new JTextField(20),
//            jtf2=new JTextField(20),
//            jtf3=new JTextField(20),
//            jtf4=new JTextField(20),
//            jtf5=new JTextField(20),
//            jtf6=new JTextField(20),
//            jtf7=new JTextField(20);
//    //定义标签,显示文本框的含义
//    @SuppressWarnings("unused")
//    private JLabel jl1 = new JLabel("名称"),
//            jl2 = new JLabel("标签"),
//            jl3 = new JLabel("跳跃字符"),
//            jl4 = new JLabel("初始值"),
//            jl5 = new JLabel("步长"),
//            jl6 = new JLabel("前缀"),
//            jl7 = new JLabel("后缀"),
//            jl8 = new JLabel("描述"),
//            jl11 = new JLabel("名称(不能为空)"),
//            jl22 = new JLabel("标签(对名称的解释)"),
//            jl33 = new JLabel("跳跃字符(以逗号分隔)"),
//            jl44 = new JLabel("初始值(不能为空)"),
//            jl55 = new JLabel("步长(不能为空)"),
//            jl66 = new JLabel("前缀(可以为空)"),
//            jl77 = new JLabel("后缀(可以为空)"),
//            jl88 = new JLabel("描述(可以为空)");
//    //定义文本域,用于书写描述信息
//    @SuppressWarnings("unused")
//    private static JTextArea jta=new JTextArea(3,20);
//    //定义容器,用于接收需要布局的容器
//    @SuppressWarnings("unused")
//    private static JPanel jp;
//    //定义主容器
//    @SuppressWarnings("unused")
//    private static AttribPanel attribpanel=null;
//    //定义按钮
//    @SuppressWarnings("unused")
//    private static JButton addButton,modifyButton,deleteButton,checkButton,saveButton,cancelButton;
//    //定义小容器用于界面分区的时候使用
//    @SuppressWarnings("unused")
//    private static JPanel northJPanel,westJPanel = new JPanel(),mainJPanel,centerJPanel;
//    //定义滚动条用于存放tree
//    @SuppressWarnings("unused")
//    private static JScrollPane scrollPane = new JScrollPane();
//    //定义一棵树
//    private static JTree tree;
//    @SuppressWarnings("unused")
//    private static String nodeName=null,ssss="",associated="";
//    
//    //初始值与步长相加的算法
//        @SuppressWarnings("rawtypes")
//        public static void arithmetic() throws VCIError{
//            String t="";
//            String d="";
//            String versionrulename="";
//            String xmlPath_ = ClientStart.getService().getVersionRulePath();
//            String text = ClientStart.getService().readXml(xmlPath_);
//            Document doc = null;
//            DefaultMutableTreeNode node=(DefaultMutableTreeNode)tree.getLastSelectedPathComponent();
//            if(node!=null&&node.isLeaf()){
//                try {
//                    doc = DocumentHelper.parseText(text);
//                    if(doc == null){
//                        return;
//                    }
//                    Element root = doc.getRootElement();
//                    List list = root.elements();
//                    for(int i=0;i<list.size();i++){
//                        Element item = (Element)list.get(i);
//                        versionrulename=item.attributeValue("name");
//                        boolean bl = node.toString().equals(versionrulename.toString());
//                        List list1 = item.elements();
//                        if(bl){
//                            for(int j=0;j<list1.size();j++){
//                                Element ee = (Element) list1.get(j);
//                                String key = ee.attributeValue("name");
//                                if(key.equals("初始值")){
//                                    t=ee.getText();
//                                }else if(key.equals("步长")){
//                                    d=ee.getText();
//                                }
//                            }
//                        }
//                    }
//                } catch (Exception e) {
//                    e.printStackTrace();
//                } 
//                
//            }
//            String realName="";
//            associated=node.toString();
//            @SuppressWarnings("unused")
//            String[] c;
//            int l = t.length();
//            int ll = 0;
//            @SuppressWarnings("unused")
//            char name;
//            String name1="";
//            if((t.matches("[0-9]*"))){
//                if(t.charAt(0)!='0'){
//                    ll=Integer.parseInt(t)+Integer.parseInt(d);
//                    realName=ll+"";
//                    String h=check(realName);
//                    ssss=h;
//                }
//                if(t.charAt(0)=='0'){
//                    k:for(int i=0;i<t.length();i++){
//                        if(t.charAt(i)!='0'){
//                            name1=t.substring(i);
//                            break k;
//                        }
//                    }
//                    ll=Integer.parseInt(name1)+Integer.parseInt(d);
//                    name1=""+ll;
//                    if(name1.length()==t.length()||name1.length()>t.length()){
//                        realName=name1;
//                        String h=check(realName);
//                        ssss=h;
//                    }else{
//                        ll=t.length()-name1.length();
//                        for(int j=0;j<ll;j++){
//                            realName+="0";
//                        }
//                        realName=realName+name1;
//                        String h=check(realName);
//                        ssss=h;
//                    }
//                }
//            }else if(t.matches("[A-Z]*")){
//                if(l==1){
//                    int y=t.charAt(0)+Integer.parseInt(d);
//                    if(y<='Z'){
//                        realName=(char)y+"";
//                        String h=check(realName);
//                        ssss=h;
//                    }else{
//                        realName="A"+(char)('A'+(y-'Z'));
//                        String h=check(realName);
//                        ssss=h;
//                    }
//                }else if(l==2&&(t.charAt(0)!='Z'&&t.charAt(1)!='Z')){
//                    int y=t.charAt(1)+Integer.parseInt(d);
//                    if(y<='Z'){
//                        realName=t.charAt(0)+""+((char)y)+"";
//                        String h=check(realName);
//                        ssss=h;
//                    }else{
//                        String rr=(char)(t.charAt(0)+1)+"";
//                        realName=rr+('A'+(char)(y-'Z'-1));
//                        String h=check(realName);
//                        ssss=h;
//                        if(t.charAt(0)=='Z'&&t.charAt(1)=='Z'){
//                            JOptionPane.showMessageDialog(null,"版本号最高可以为ZZ创建失败");
//                            return;
//                        }
//                    }
//                }else if(t.charAt(0)=='Z'&&t.charAt(1)=='Z'){
//                    JOptionPane.showMessageDialog(null,"版本号最高可以为ZZ创建失败");
//                    return;
//                }else{
//                    JOptionPane.showMessageDialog(null,"版本号最高可以为ZZ");
//                    return;
//                }
//                }else if(t.matches("[a-z]*")){
//                if(l==1){
//                    int y=t.charAt(0)+Integer.parseInt(d);
//                    if(y<='z'){
//                        realName=(char)y+"";
//                        String h=check(realName);
//                        ssss=h;
//                    }else{
//                        realName="a"+(char)('a'+(y-'z'-1));
//                        String h=check(realName);
//                        ssss=h;
//                    }
//                }else if(l==2&&(t.charAt(0)!='z'&&t.charAt(1)!='z')){
//                    int y=t.charAt(1)+Integer.parseInt(d);
//                    if(y<='z'){
//                        realName=t.charAt(0)+""+((char)y)+"";
//                        String h=check(realName);
//                        ssss=h;
//                    }else{
//                        String rr=(char)(t.charAt(0)+1)+"";
//                        realName=rr+(char)('a'+(y-'z'-1));
//                        String h=check(realName);
//                        ssss=h;
//                        if(t.charAt(0)=='z'&&t.charAt(1)=='z'){
//                            JOptionPane.showMessageDialog(null,"版本号最高可以为zz创建失败");
//                            return;
//                        }
//                    }
//                }else if(t.charAt(0)=='z'&&t.charAt(1)=='z'){
//                    JOptionPane.showMessageDialog(null,"版本号最高可以为ZZ创建失败");
//                    return;
//                }else{
//                    JOptionPane.showMessageDialog(null,"版本号最高可以为zz");
//                    return;
//                }
//            }else{
//                if(!t.contains("-"))
//                {
//                    String[] ss = t.split("\\D");
//                    int l1=ss.length;
//                    if(l1==1){
//                        String s=t.substring(1);
//                        String s1=t.substring(0,1);
//                        if(s.matches("[A-Z]*")){
//                            if(s.length()==1){
//                                int y=s.charAt(0)+Integer.parseInt(d);
//                                if(y<='Z'){
//                                    realName=ss[0]+""+(char)y+"";
//                                    String h=check(realName);
//                                    ssss=h;
//                                }else if(y>'Z'){
//                                    if(s1.charAt(0)!='0'){
//                                        ll=Integer.parseInt(s1)+1;
//                                        realName=ll+""+(char)('A'+(y-'Z'-1));
//                                        String h=check(realName);
//                                        ssss=h;
//                                    }
//                                    if(s1.charAt(0)=='0'){
//                                        k:for(int i=0;i<s1.length();i++){
//                                            if(s1.charAt(i)!='0'){
//                                                name1=s1.substring(i);
//                                                break k;
//                                            }
//                                        }
//                                        ll=Integer.parseInt(name1)+1;
//                                        name1=""+ll;
//                                        if(name1.length()==s1.length()||name1.length()>s1.length()){
//                                            realName=name1+(char)('A'+(y-'Z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else{
//                                            ll=s1.length()-name1.length();
//                                            for(int j=0;j<ll;j++){
//                                                realName+="0";
//                                            }
//                                            realName=realName+name1+(char)('A'+(y-'Z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }
//                                    }    
//                                }
//                            }else if(s.length()==2&&(s.charAt(0)!='Z'&&s.charAt(1)!='Z')){
//                                int y=s.charAt(1)+Integer.parseInt(d);
//                                if(y<='Z'){
//                                    realName=ss[0]+s.charAt(0)+""+((char)y)+"";
//                                    String h=check(realName);
//                                    ssss=h;
//                                }else{
//                                    int tt=s.charAt(0)+1;
//                                    if(tt<='Z'){
//                                        String rr=(char)(s.charAt(0)+1)+"";
//                                        realName=ss[0]+rr+(char)('A'+(y-'Z'-1));
//                                        String h=check(realName);
//                                        ssss=h;
//                                    }
//                                    if(tt>'Z'){
//                                        if(s1.charAt(0)!='0'){
//                                            ll=Integer.parseInt(t)+1;
//                                            realName=ll+""+"A"+(char)('A'+(y-'Z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }
//                                        if(s1.charAt(0)=='0'){
//                                            k:for(int i=0;i<s1.length();i++){
//                                                if(s1.charAt(i)!='0'){
//                                                    name1=s1.substring(i);
//                                                    break k;
//                                                }
//                                            }
//                                            ll=Integer.parseInt(name1)+1;
//                                            name1=""+ll;
//                                            if(name1.length()==s1.length()||name1.length()>s1.length()){
//                                                realName=name1+"A"+(char)('A'+(y-'Z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                ll=s1.length()-name1.length();
//                                                for(int j=0;j<ll;j++){
//                                                    realName+="0";
//                                                }
//                                                realName=realName+name1+"A"+(char)('A'+(y-'Z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }
//                                        }    
//                                    }
//                                }
//                            }
//                        }else if(s.matches("[a-z]*")){
//                            if(s.length()==1){
//                                int y=s.charAt(0)+Integer.parseInt(d);
//                                if(y<='z'){
//                                    realName=ss[0]+""+(char)y+"";
//                                    String h=check(realName);
//                                    ssss=h;
//                                }else if(y>'z'){
//                                    if(s1.charAt(0)!='0'){
//                                        ll=Integer.parseInt(s1)+1;
//                                        realName=ll+""+(char)('a'+y-'z'-1);
//                                        String h=check(realName);
//                                        ssss=h;
//                                    }
//                                    if(s1.charAt(0)=='0'){
//                                        k:for(int i=0;i<s1.length();i++){
//                                            if(s1.charAt(i)!='0'){
//                                                name1=s1.substring(i);
//                                                break k;
//                                            }
//                                        }
//                                        ll=Integer.parseInt(name1)+1;
//                                        name1=""+ll;
//                                        if(name1.length()==s1.length()||name1.length()>s1.length()){
//                                            realName=name1+(char)('a'+y-'z'-1);
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else{
//                                            ll=s1.length()-name1.length();
//                                            for(int j=0;j<ll;j++){
//                                                realName+="0";
//                                            }
//                                            realName=realName+name1+(char)('a'+y-'z'-1);
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }
//                                    }    
//                                }
//                            }else if(s.length()==2&&(s.charAt(0)!='z'&&s.charAt(1)!='z')){
//                                int y=s.charAt(1)+Integer.parseInt(d);
//                                if(y<='z'){
//                                    realName=ss[0]+s.charAt(0)+""+((char)y)+"";
//                                    String h=check(realName);
//                                    ssss=h;
//                                }else{
//                                    int tt=s.charAt(0)+1;
//                                    if(tt<='z'){
//                                        String rr=(char)(s.charAt(0)+1)+"";
//                                        realName=ss[0]+rr+('a'+y-'z'-1);
//                                        String h=check(realName);
//                                        ssss=h;
//                                    }
//                                    if(tt>'z'){
//                                        if(s1.charAt(0)!='0'){
//                                            ll=Integer.parseInt(t)+1;
//                                            realName=ll+""+"a"+(char)('a'+y-'z'-1);
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }
//                                        if(s1.charAt(0)=='0'){
//                                            k:for(int i=0;i<s1.length();i++){
//                                                if(s1.charAt(i)!='0'){
//                                                    name1=s1.substring(i);
//                                                    break k;
//                                                }
//                                            }
//                                            ll=Integer.parseInt(name1)+1;
//                                            name1=""+ll;
//                                            if(name1.length()==s1.length()||name1.length()>s1.length()){
//                                                realName=name1+"a"+(char)('a'+y-'z'-1);
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                ll=s1.length()-name1.length();
//                                                for(int j=0;j<ll;j++){
//                                                    realName+="0";
//                                                }
//                                                realName=realName+name1+"a"+(char)('a'+y-'z'-1);
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }
//                                        }    
//                                    }
//                                }
//                            }
//                        }    
//                    }
//                    if(l1!=1){
//                        String s=t.substring(0,l1-1);
//                        String s1=t.substring(l1-1);
//                        if((s1.matches("[0-9]*"))){
//                            if(s1.charAt(0)!='0'){
//                                ll=Integer.parseInt(s1)+Integer.parseInt(d);
//                                String ll1=ll+"";
//                                if(ll1.length()>s1.length()){
//                                    if(s.matches("[A-Z]*")){
//                                        if(s.length()==1){
//                                            String sss="";
//                                            int y=s.charAt(0)+1;
//                                            if(y<='Z'){
//                                                for(int lll=0;lll<s1.length();lll++){
//                                                    sss+="9";
//                                                }
//                                                realName=(char)y+""+(ll-Integer.parseInt(sss));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else if(y>'Z'){
//                                                realName="A"+(char)('A'+(y-'Z'-1))+(ll-Integer.parseInt(sss));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }
//                                        }else if(s.length()==2&&(s.charAt(0)!='Z'&&s.charAt(1)!='Z')){
//                                            String s2="";
//                                            int y=s.charAt(1)+1;
//                                            if(y<='Z'){
//                                                for(int llll=0;llll<s1.length();llll++){
//                                                    s2+="9";
//                                                }
//                                                realName=s.charAt(0)+""+(char)y+(ll-Integer.parseInt(s2));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                int tt=s.charAt(0)+1;
//                                                if(tt<='Z'){
//                                                    String rr=(char)(s.charAt(0)+1)+"";
//                                                    realName=ss[0]+rr+(char)('A'+(y-'Z'-1))+(ll-Integer.parseInt(s2));
//                                                    String h=check(realName);
//                                                    ssss=h;
//                                                }
//                                                if(tt>'Z'){
//                                                    JOptionPane.showMessageDialog(null,"版本号最高可以为ZZXXX创建失败");
//                                                    return;    
//                                                }
//                                            }
//                                        }
//                                    }else if(s.matches("[a-z]*")){
//                                        if(s.length()==1){
//                                            String sss="";
//                                            int y=s.charAt(0)+1;
//                                            if(y<='z'){
//                                                for(int lll=0;lll<s1.length();lll++){
//                                                    sss+="9";
//                                                }
//                                                realName=(char)y+""+(ll-Integer.parseInt(sss));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else if(y>'z'){
//                                                realName="a"+(char)('a'+(y-'z'-1))+(ll-Integer.parseInt(sss));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }
//                                        }else if(s.length()==2&&(s.charAt(0)!='z'&&s.charAt(1)!='z')){
//                                            String s2="";
//                                            int y=s.charAt(1)+1;
//                                            if(y<='z'){
//                                                for(int llll=0;llll<s1.length();llll++){
//                                                    s2+="9";
//                                                }
//                                                realName=s.charAt(0)+""+(char)y+(ll-Integer.parseInt(s2));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                int tt=s.charAt(0)+1;
//                                                if(tt<='z'){
//                                                    String rr=(char)(s.charAt(0)+1)+"";
//                                                    realName=s1+rr+(char)('a'+(y-'z'-1))+(ll-Integer.parseInt(s2));
//                                                    String h=check(realName);
//                                                    ssss=h;
//                                                }
//                                                if(tt>'z'){
//                                                    JOptionPane.showMessageDialog(null,"版本号最高可以为zzXXX创建失败");
//                                                    return;    
//                                                }
//                                            }
//                                        }
//                                    }
//                                }else{
//                                    realName=s+ll1;
//                                    String h=check(realName);
//                                    ssss=h;
//                                }
//                            }
//                            if(s1.charAt(0)=='0'){
//                                k:for(int i=0;i<s1.length();i++){
//                                    if(s1.charAt(i)!='0'){
//                                        name1=s1.substring(i);
//                                        break k;
//                                    }
//                                }
//                                ll=Integer.parseInt(name1)+Integer.parseInt(d);
//                                name1=""+ll;
//                                if(name1.length()==s1.length()){
//                                    realName=s+name1;
//                                    String h=check(realName);
//                                    ssss=h;
//                                }else if(name1.length()>s1.length()){
//                                    if(s.matches("[A-Z]*")){
//                                        if(s.length()==1){
//                                            String sss="";
//                                            int y=s.charAt(0)+1;
//                                            if(y<='Z'){
//                                                for(int lll=0;lll<s1.length();lll++){
//                                                    sss+="9";
//                                                }
//                                                realName=(char)y+""+(ll-Integer.parseInt(sss));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else if(y>'Z'){
//                                                realName="A"+(char)('A'+(y-'Z'-1))+(ll-Integer.parseInt(sss));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }
//                                        }else if(s.length()==2&&(s.charAt(0)!='Z'&&s.charAt(1)!='Z')){
//                                            String s2="";
//                                            int y=s.charAt(1)+1;
//                                            if(y<='Z'){
//                                                for(int llll=0;llll<s1.length();llll++){
//                                                    s2+="9";
//                                                }
//                                                realName=s.charAt(0)+""+(char)y+(ll-Integer.parseInt(s2));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                int tt=s.charAt(0)+1;
//                                                if(tt<='Z'){
//                                                    String rr=(char)(s.charAt(0)+1)+"";
//                                                    realName=s1+rr+(char)('A'+(y-'Z'-1))+(ll-Integer.parseInt(s2));
//                                                    String h=check(realName);
//                                                    ssss=h;
//                                                }
//                                                if(tt>'Z'){
//                                                    JOptionPane.showMessageDialog(null,"版本号最高可以为ZZXXX创建失败");
//                                                    return;    
//                                                }
//                                            }
//                                        }
//                                    }else if(s.matches("[a-z]*")){
//                                        if(s.length()==1){
//                                            String sss="";
//                                            int y=s.charAt(0)+1;
//                                            if(y<='z'){
//                                                for(int lll=0;lll<s1.length();lll++){
//                                                    sss+="9";
//                                                }
//                                                realName=(char)y+""+(ll-Integer.parseInt(sss));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else if(y>'z'){
//                                                realName="a"+(char)('a'+(y-'z'-1))+(ll-Integer.parseInt(sss));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }
//                                        }else if(s.length()==2&&(s.charAt(0)!='z'&&s.charAt(1)!='z')){
//                                            String s2="";
//                                            int y=s.charAt(1)+1;
//                                            if(y<='z'){
//                                                for(int llll=0;llll<s1.length();llll++){
//                                                    s2+="9";
//                                                }
//                                                realName=s.charAt(0)+""+(char)y+(ll-Integer.parseInt(s2));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                int tt=s.charAt(0)+1;
//                                                if(tt<='z'){
//                                                    String rr=(char)(s.charAt(0)+1)+"";
//                                                    realName=ss[0]+rr+(char)('a'+(y-'z'-1))+(ll-Integer.parseInt(s2));
//                                                    String h=check(realName);
//                                                    ssss=h;
//                                                }
//                                                if(tt>'z'){
//                                                    JOptionPane.showMessageDialog(null,"版本号最高可以为ZZXXX创建失败");
//                                                    return;    
//                                                }
//                                            }
//                                        }
//                                    }
//                                }else{
//                                    ll=s1.length()-name1.length();
//                                    for(int j=0;j<ll;j++){
//                                        realName+="0";
//                                    }
//                                    realName=s+realName+name1;
//                                    String h=check(realName);
//                                    ssss=h;
//                                }
//                            }
//                        }
//                    }
//                }else if(t.contains("-"))
//                {
//                    String[] ss=t.split("-");
//                    String df="",df1="";
//                    int y=0;
//                    df=ss[0];
//                    df1=ss[1];
//                    if(df1.matches("[0-9]*")){
//                        if(df1.charAt(0)!='0'){
//                            if(df1.length()==1){
//                                ll=Integer.parseInt(df1)+Integer.parseInt(d);
//                                if(ll<10){
//                                    realName=df+"-"+ll;
//                                    String h=check(realName);
//                                    ssss=h;
//                                }else{
//                                    if(df.matches("[A-Z]*")){
//                                        if(df.length()==1){
//                                            y=df.charAt(0)+1;
//                                            if(y<='Z'){
//                                                realName=(char)(df.charAt(0)+1)+"-"+(ll-10);
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                realName="A"+(char)('A'+(y-'Z'-1))+"-"+(ll-10);
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }
//                                        }else if(df.length()==2){
//                                            y=df.charAt(1)+1;
//                                            if(y<='Z'){
//                                                realName=(char)df.charAt(0)+""+(char)(df.charAt(1)+1)+"-"+(ll-10);
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                int tt=df.charAt(0)+1;
//                                                if(tt<='Z'){
//                                                    realName=(char)(df.charAt(0)+1)+""+(char)('A'+(y-'Z'-1))+"-"+(ll-10);
//                                                    String h=check(realName);
//                                                    ssss=h;
//                                                }else if(tt>'Z'){
//                                                    JOptionPane.showMessageDialog(null,"版本号最高可以为ZZXXX创建失败");
//                                                    return;
//                                                }
//                                            }
//                                        }
//                                    }else if(df.matches("[a-z]*")){
//                                        if(df.length()==1){
//                                            y=df.charAt(0)+1;
//                                            if(y<='z'){
//                                                realName=(char)(df.charAt(0)+1)+"-"+(ll-10);
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                realName="a"+(char)('a'+(y-'z'-1))+"-"+(ll-10);
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }
//                                        }else if(df.length()==2){
//                                            y=df.charAt(1)+1;
//                                            if(y<='z'){
//                                                realName=(char)df.charAt(0)+""+(char)(df.charAt(1)+1)+"-"+(ll-10);
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                int tt=df.charAt(0)+1;
//                                                if(tt<='z'){
//                                                    realName=(char)(df.charAt(0)+1)+""+(char)('a'+(y-'z'-1))+"-"+(ll-10);
//                                                    String h=check(realName);
//                                                    ssss=h;
//                                                }else if(tt>'z'){
//                                                    JOptionPane.showMessageDialog(null,"版本号最高可以为zzXXX创建失败");
//                                                    return;
//                                                }
//                                            }
//                                        }
//                                    }else if(df.matches("[0-9]*")){
//                                        if(df.charAt(0)!='0'){
//                                            realName=Integer.parseInt(df)+1+"-"+(ll-10);
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else if(df.charAt(0)=='0'){
//                                            k:for(int i=0;i<df.length();i++){
//                                                if(df.charAt(i)!='0'){
//                                                    name1=df1.substring(i);
//                                                    break k;
//                                                }
//                                            }
//                                            int ll1=Integer.parseInt(name1)+Integer.parseInt(d);
//                                            name1=""+ll1;
//                                            if(name1.length()==df.length()){
//                                                realName=name1+"-"+(ll-10);
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else if(name1.length()<df1.length()){
//                                                ll=df1.length()-name1.length();
//                                                for(int j=0;j<ll;j++){
//                                                    realName+="0";
//                                                }
//                                                realName=realName+name1+"-"+(ll-10);
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }
//                                        }
//                                    }
//                                }
//                            }else if(df1.length()==2){
//                                ll=Integer.parseInt(df1)+Integer.parseInt(d);
//                            if(ll<100){
//                                realName=df+"-"+ll;
//                                String h=check(realName);
//                                ssss=h;
//                            }else{
//                                if(df.matches("[A-Z]*")){
//                                    if(df.length()==1){
//                                        y=df.charAt(0)+1;
//                                        if(y<='Z'){
//                                            realName=(char)(df.charAt(0)+1)+"-0"+(ll-100);
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else{
//                                            realName="A"+(char)('A'+(y-'Z'-1))+"-0"+(ll-100);
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }
//                                    }else if(df.length()==2){
//                                        y=df.charAt(1)+1;
//                                        if(y<='Z'){
//                                            realName=df.charAt(0)+""+(char)(df.charAt(1)+1)+"-0"+(ll-100);
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else{
//                                            int tt=df.charAt(0)+1;
//                                            if(tt<='Z'){
//                                                realName=(char)(df.charAt(0)+1)+""+(char)('A'+(y-'Z'-1))+"-0"+(ll-100);
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else if(tt>'Z'){
//                                                JOptionPane.showMessageDialog(null,"版本号最高可以为ZZXXX创建失败");
//                                                return;
//                                            }
//                                        }
//                                    }
//                                }else if(df.matches("[a-z]*")){
//                                    if(df.length()==1){
//                                        y=df.charAt(0)+1;
//                                        if(y<='z'){
//                                            realName=(char)(df.charAt(0)+1)+"-0"+(ll-100);
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else{
//                                            realName="a"+(char)('a'+(y-'z'-1))+"-0"+(ll-100);
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }
//                                    }else if(df.length()==2){
//                                        y=df.charAt(1)+1;
//                                        if(y<='z'){
//                                            realName=df.charAt(0)+""+(char)(df.charAt(1)+1)+"-0"+(ll-100);
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else{
//                                            int tt=df.charAt(0)+1;
//                                            if(tt<='z'){
//                                                realName=(char)(df.charAt(0)+1)+""+(char)('a'+(y-'z'-1))+"-0"+(ll-100);
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else if(tt>'z'){
//                                                JOptionPane.showMessageDialog(null,"版本号最高可以为zzXXX创建失败");
//                                                return;
//                                            }
//                                        }
//                                    }
//                                }else if(df.matches("[0-9]*")){
//                                    if(df.charAt(0)!='0'){
//                                        realName=Integer.parseInt(df)+1+"-0"+(ll-100);
//                                        String h=check(realName);
//                                        ssss=h;
//                                    }else if(df.charAt(0)=='0'){
//                                        k:for(int i=0;i<df.length();i++){
//                                            if(df.charAt(i)!='0'){
//                                                name1=df1.substring(i);
//                                                break k;
//                                            }
//                                        }
//                                        int ll1=Integer.parseInt(name1)+Integer.parseInt(d);
//                                        name1=""+ll1;
//                                        if(name1.length()==df.length()){
//                                            realName=name1+"-"+(ll-100);
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else if(name1.length()<df1.length()){
//                                            ll=df1.length()-name1.length();
//                                            for(int j=0;j<ll;j++){
//                                                realName+="0";
//                                            }
//                                            realName=realName+name1+"-0"+(ll-100);
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }
//                                    }
//                                }
//                            }
//                            }
//                        }else if(df1.charAt(0)=='0'){
//                            if(df1.charAt(0)=='0'&&df1.charAt(1)=='0'){
//                                realName=df+"-"+"0"+d;
//                                String h=check(realName);
//                                ssss=h;
//                            }else{
//                            k:for(int i=0;i<df1.length();i++){
//                                if(df1.charAt(i)!='0'){
//                                    name1=df1.substring(i);
//                                    break k;
//                                }
//                            }
//                            ll=Integer.parseInt(name1)+Integer.parseInt(d);
//                            name1=""+ll;
//                            if(name1.length()==df1.length()){
//                                realName=df+"-"+name1;
//                                String h=check(realName);
//                                ssss=h;
//                            }else if(name1.length()<df1.length()){
//                                ll=df1.length()-name1.length();
//                                for(int j=0;j<ll;j++){
//                                    realName+="0";
//                                }
//                                realName=df+"-"+realName+name1;
//                                String h=check(realName);
//                                ssss=h;
//                            }else if(name1.length()>df1.length()){
//                                String sss="";
//                                for(int lll=0;lll<df1.length();lll++){
//                                    sss+="9";
//                                }
//                                    if(df.matches("[A-Z]*")){
//                                        if(df.length()==1){
//                                            y=df.charAt(0)+1;
//                                            if(y<='Z'){
//                                                realName=(char)(df.charAt(0)+1)+"-"+(ll-Integer.parseInt(sss));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                realName="A"+(char)('A'+(y-'Z'-1))+"-"+(ll-Integer.parseInt(sss));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }
//                                        }else if(df.length()==2){
//                                            y=df.charAt(1)+1;
//                                            if(y<='Z'){
//                                                realName=df.charAt(0)+""+(char)(df.charAt(1)+1)+"-"+(ll-Integer.parseInt(sss));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                int tt=df.charAt(0)+1;
//                                                if(tt<='Z'){
//                                                    realName=(char)(df.charAt(0)+1)+""+(char)('A'+(y-'Z'-1))+"-"+(ll-Integer.parseInt(sss));
//                                                    String h=check(realName);
//                                                    ssss=h;
//                                                }else if(tt>'Z'){
//                                                    JOptionPane.showMessageDialog(null,"版本号最高可以为ZZXXX创建失败");
//                                                    return;
//                                                }
//                                            }
//                                        }
//                                    }else if(df.matches("[a-z]*")){
//                                        if(df.length()==1){
//                                            y=df.charAt(0)+1;
//                                            if(y<='z'){
//                                                realName=(char)(df.charAt(0)+1)+"-"+(ll-Integer.parseInt(sss));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                realName="a"+(char)('a'+(y-'z'-1))+"-"+(ll-Integer.parseInt(sss));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }
//                                        }else if(df.length()==2){
//                                            y=df.charAt(1)+1;
//                                            if(y<='z'){
//                                                realName=df.charAt(0)+""+(char)(df.charAt(1)+1)+"-"+(ll-Integer.parseInt(sss));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                int tt=df.charAt(0)+1;
//                                                if(tt<='z'){
//                                                    realName=(char)(df.charAt(0)+1)+""+(char)('a'+(y-'z'-1))+"-"+(ll-Integer.parseInt(sss));
//                                                    String h=check(realName);
//                                                    ssss=h;
//                                                }else if(tt>'z'){
//                                                    JOptionPane.showMessageDialog(null,"版本号最高可以为zzXXX创建失败");
//                                                    return;
//                                                }
//                                            }
//                                        }
//                                    }else if(df.matches("[0-9]*")){
//                                        if(df.charAt(0)!='0'){
//                                            realName=Integer.parseInt(df)+1+"-"+(ll-Integer.parseInt(sss));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else if(df.charAt(0)=='0'){
//                                            k:for(int i=0;i<df.length();i++){
//                                                if(df.charAt(i)!='0'){
//                                                    name1=df1.substring(i);
//                                                    break k;
//                                                }
//                                            }
//                                            int ll1=Integer.parseInt(name1)+Integer.parseInt(d);
//                                            name1=""+ll1;
//                                            if(name1.length()==df.length()){
//                                                realName=name1+"-"+(ll-Integer.parseInt(sss));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else if(name1.length()<df1.length()){
//                                                ll=df1.length()-name1.length();
//                                                for(int j=0;j<ll;j++){
//                                                    realName+="0";
//                                                }
//                                                realName=realName+name1+"-"+(ll-Integer.parseInt(sss));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }
//                                        }
//                                    }
//                            }
//                            }
//                        }
//                    }else if(df1.matches("[A-Z]*")){
//                        if(df1.length()==1){
//
//                            ll=df1.charAt(0)+Integer.parseInt(d);
//                            if(ll<='Z'){
//                                realName=df+"-"+(char)(df1.charAt(0)+Integer.parseInt(d));
//                                String h=check(realName);
//                                ssss=h;
//                            }else{
//                                if(df.matches("[A-Z]*")){
//                                    if(df.length()==1){
//                                        y=df.charAt(0)+1;
//                                        if(y<='Z'){
//                                            realName=(char)(df.charAt(0))+1+"-"+(char)('A'+(ll-'Z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else{
//                                            realName="A"+(char)('A'+(y-'Z'-1))+"-"+(char)('A'+(ll-'Z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }
//                                    }else if(df.length()==2){
//                                        y=df.charAt(1)+1;
//                                        if(y<='Z'){
//                                            realName=df.charAt(0)+""+(char)(df.charAt(1)+1)+"-"+(char)('A'+(ll-'Z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else{
//                                            int tt=df.charAt(0)+1;
//                                            if(tt<='Z'){
//                                                realName=(char)(df.charAt(0)+1)+""+(char)('A'+(y-'Z'-1))+"-"+(char)('A'+(ll-'Z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else if(tt>'Z'){
//                                                JOptionPane.showMessageDialog(null,"版本号最高可以为ZZXXX创建失败");
//                                                return;
//                                            }
//                                        }
//                                    }
//                                }else if(df.matches("[a-z]*")){
//                                    if(df.length()==1){
//                                        y=df.charAt(0)+1;
//                                        if(y<='z'){
//                                            realName=(char)(df.charAt(0)+1)+"-"+(char)('A'+(ll-'Z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else{
//                                            realName="a"+(char)('a'+(y-'z'-1))+"-"+(char)('A'+(ll-'Z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }
//                                    }else if(df.length()==2){
//                                        y=df.charAt(1)+1;
//                                        if(y<='z'){
//                                            realName=df.charAt(0)+""+(char)(df.charAt(1)+1)+"-"+(char)('A'+(ll-'Z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else{
//                                            int tt=df.charAt(0)+1;
//                                            if(tt<='z'){
//                                                realName=(char)(df.charAt(0)+1)+""+(char)('a'+(y-'z'-1))+"-"+(char)('A'+(ll-'Z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else if(tt>'z'){
//                                                JOptionPane.showMessageDialog(null,"版本号最高可以为zzXXX创建失败");
//                                                return;
//                                            }
//                                        }
//                                    }
//                                }else if(df.matches("[0-9]*")){
//                                    if(df.charAt(0)!='0'){
//                                        realName=Integer.parseInt(df)+1+"-"+(char)('A'+(ll-'Z'-1));
//                                        String h=check(realName);
//                                        ssss=h;
//                                    }else if(df.charAt(0)=='0'){
//                                        k:for(int i=0;i<df.length();i++){
//                                            if(df.charAt(i)!='0'){
//                                                name1=df1.substring(i);
//                                                break k;
//                                            }
//                                        }
//                                        int ll1=Integer.parseInt(name1)+Integer.parseInt(d);
//                                        name1=""+ll1;
//                                        if(name1.length()==df.length()){
//                                            realName=name1+"-"+(char)('A'+(ll-'Z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else if(name1.length()<df1.length()){
//                                            ll=df1.length()-name1.length();
//                                            for(int j=0;j<ll;j++){
//                                                realName+="0";
//                                            }
//                                            realName=realName+name1+"-"+(char)('A'+(ll-'Z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }
//                                    }
//                                }
//                            }
//                        
//                        }else if(df1.length()==2){
//                            int ll2=df1.charAt(1)+Integer.parseInt(d);
//                            if(ll2<='Z'){
//                                realName=df+"-"+df1.charAt(0)+(char)(df1.charAt(1)+Integer.parseInt(d));
//                                String h=check(realName);
//                                ssss=h;
//                            }else{
//                                int ll1=df1.charAt(0)+1;
//                                if(ll1<='Z'){
//                                    realName=df+"-"+(char)(df1.charAt(0)+1)+(char)('A'+(ll2-'Z'-1));
//                                    String h=check(realName);
//                                    ssss=h;
//                                }else{
//                                    ll=ll2-'Z';
//                                    if(df.matches("[A-Z]*")){
//                                        if(df.length()==1){
//                                            y=df.charAt(0)+1;
//                                            if(y<='Z'){
//                                                realName=(char)(df.charAt(0)+1)+"-"+"A"+(char)('A'+(ll2-'Z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                realName="A"+(char)('A'+(y-'Z'-1))+"-"+"A"+(char)('A'+(ll2-'Z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }
//                                        }else if(df.length()==2){
//                                            y=df.charAt(1)+1;
//                                            if(y<='Z'){
//                                                realName=df.charAt(0)+""+(char)(df.charAt(1)+1)+"-"+"A"+(char)('A'+(ll2-'Z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                int tt=df.charAt(0)+1;
//                                                if(tt<='Z'){
//                                                    realName=(char)(df.charAt(0)+1)+""+(char)('A'+(y-'Z'-1))+"-"+"A"+(char)('A'+(ll2-'Z'-1));
//                                                    String h=check(realName);
//                                                    ssss=h;
//                                                }else if(tt>'Z'){
//                                                    JOptionPane.showMessageDialog(null,"版本号最高可以为ZZXXX创建失败");
//                                                    return;
//                                                }
//                                            }
//                                        }
//                                    }else if(df.matches("[a-z]*")){
//                                        if(df.length()==1){
//                                            y=df.charAt(0)+1;
//                                            if(y<='z'){
//                                                realName=(char)(df.charAt(0)+1)+"-"+"A"+(char)('A'+(ll2-'Z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                realName="a"+(char)('a'+(y-'z'-1))+"-"+"A"+(char)('A'+(ll2-'Z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }
//                                        }else if(df.length()==2){
//                                            y=df.charAt(1)+1;
//                                            if(y<='z'){
//                                                realName=df.charAt(0)+""+(char)(df.charAt(1)+1)+"-"+"A"+(char)('A'+(ll2-'Z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                int tt=df.charAt(0)+1;
//                                                if(tt<='z'){
//                                                    realName=(char)(df.charAt(0)+1)+""+(char)('a'+(y-'z'-1))+"-"+"A"+(char)('A'+(ll2-'Z'-1));
//                                                    String h=check(realName);
//                                                    ssss=h;
//                                                }else if(tt>'z'){
//                                                    JOptionPane.showMessageDialog(null,"版本号最高可以为zzXXX创建失败");
//                                                    return;
//                                                }
//                                            }
//                                        }
//                                    }else if(df.matches("[0-9]*")){
//                                        if(df.charAt(0)!='0'){
//                                            realName=Integer.parseInt(df)+1+"-"+"A"+(char)('A'+(ll2-'Z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else if(df.charAt(0)=='0'){
//                                            k:for(int i=0;i<df.length();i++){
//                                                if(df.charAt(i)!='0'){
//                                                    name1=df1.substring(i);
//                                                    break k;
//                                                }
//                                            }
//                                            int ll3=Integer.parseInt(name1)+Integer.parseInt(d);
//                                            name1=""+ll3;
//                                            if(name1.length()==df.length()){
//                                                realName=name1+"-"+"A"+(char)('A'+(ll2-'Z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else if(name1.length()<df1.length()){
//                                                ll=df1.length()-name1.length();
//                                                for(int j=0;j<ll;j++){
//                                                    realName+="0";
//                                                }
//                                                realName=realName+name1+"-"+"A"+(char)('A'+(ll2-'Z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }
//                                        }
//                                    }
//                                
//                                }
//                            }
//                        }
//                    }else if(df1.matches("[a-z]*")){
//                        if(df1.length()==1){
//                            ll=df1.charAt(0)+Integer.parseInt(d);
//                            if(ll<='z'){
//                                realName=df+"-"+(char)(df1.charAt(0)+Integer.parseInt(d));
//                                String h=check(realName);
//                                ssss=h;
//                            }else{
//                                if(df.matches("[A-Z]*")){
//                                    if(df.length()==1){
//                                        y=df.charAt(0)+1;
//                                        if(y<='Z'){
//                                            realName=(char)(df.charAt(0)+1)+"-"+(char)('a'+(ll-'z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else{
//                                            realName="A"+(char)('A'+(y-'Z'-1))+"-"+(char)('a'+(ll-'z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }
//                                    }else if(df.length()==2){
//                                        y=df.charAt(1)+1;
//                                        if(y<='Z'){
//                                            realName=df.charAt(0)+""+(char)(df.charAt(1)+1)+"-"+(char)('a'+(ll-'z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else{
//                                            int tt=df.charAt(0)+1;
//                                            if(tt<='Z'){
//                                                realName=(char)(df.charAt(0)+1)+""+(char)('A'+(y-'Z'-1))+"-"+(char)('a'+(ll-'z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else if(tt>'Z'){
//                                                JOptionPane.showMessageDialog(null,"版本号最高可以为ZZXXX创建失败");
//                                                return;
//                                            }
//                                        }
//                                    }
//                                }else if(df.matches("[a-z]*")){
//                                    if(df.length()==1){
//                                        y=df.charAt(0)+1;
//                                        if(y<='z'){
//                                            realName=(char)(df.charAt(0)+1)+"-"+(char)('a'+(ll-'z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else{
//                                            realName="a"+(char)('a'+(y-'z'-1))+"-"+(char)('a'+(ll-'z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }
//                                    }else if(df.length()==2){
//                                        y=df.charAt(1)+1;
//                                        if(y<='z'){
//                                            realName=df.charAt(0)+""+(char)(df.charAt(1)+1)+"-"+(char)('a'+(ll-'z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else{
//                                            int tt=df.charAt(0)+1;
//                                            if(tt<='z'){
//                                                realName=(char)(df.charAt(0)+1)+""+(char)('a'+(y-'z'-1))+"-"+(char)('a'+(ll-'z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else if(tt>'z'){
//                                                JOptionPane.showMessageDialog(null,"版本号最高可以为zzXXX创建失败");
//                                                return;
//                                            }
//                                        }
//                                    }
//                                }else if(df.matches("[0-9]*")){
//                                    if(df.charAt(0)!='0'){
//                                        realName=Integer.parseInt(df)+1+"-"+(char)('a'+(ll-'z'-1));
//                                        String h=check(realName);
//                                        ssss=h;
//                                    }else if(df.charAt(0)=='0'){
//                                        k:for(int i=0;i<df.length();i++){
//                                            if(df.charAt(i)!='0'){
//                                                name1=df1.substring(i);
//                                                break k;
//                                            }
//                                        }
//                                        int ll1=Integer.parseInt(name1)+Integer.parseInt(d);
//                                        name1=""+ll1;
//                                        if(name1.length()==df.length()){
//                                            realName=name1+"-"+(char)('a'+(ll-'z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else if(name1.length()<df1.length()){
//                                            ll=df1.length()-name1.length();
//                                            for(int j=0;j<ll;j++){
//                                                realName+="0";
//                                            }
//                                            realName=realName+name1+"-"+(char)('a'+(ll-'z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }
//                                    }
//                                }
//                            }
//                        
//                        }else if(df1.length()==2){
//                            int ll2=df1.charAt(1)+Integer.parseInt(d);
//                            if(ll2<='z'){
//                                realName=df+"-"+df1.charAt(0)+(char)(df1.charAt(1)+Integer.parseInt(d));
//                                String h=check(realName);
//                                ssss=h;
//                            }else{
//                                int ll1=df1.charAt(0)+1;
//                                if(ll1<='z'){
//                                    realName=df+"-"+(char)(df1.charAt(0)+1)+(char)('a'+(ll2-'z'-1));
//                                    String h=check(realName);
//                                    ssss=h;
//                                }else{
//                                    ll=ll2-'z';
//                                    if(df.matches("[A-Z]*")){
//                                        if(df.length()==1){
//                                            y=df.charAt(0)+1;
//                                            if(y<='Z'){
//                                                realName=(char)(df.charAt(0)+1)+"-"+"a"+(char)('a'+(ll2-'z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                realName="A"+(char)('A'+(y-'Z'-1))+"-"+"a"+(char)('a'+(ll2-'z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }
//                                        }else if(df.length()==2){
//                                            y=df.charAt(1)+1;
//                                            if(y<='Z'){
//                                                realName=df.charAt(0)+""+(char)(df.charAt(1)+1)+"-"+"a"+(char)('a'+(ll2-'z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                int tt=df.charAt(0)+1;
//                                                if(tt<='Z'){
//                                                    realName=(char)(df.charAt(0)+1)+""+(char)('A'+(y-'Z'-1))+"-"+"a"+(char)('a'+(ll2-'z'-1));
//                                                    String h=check(realName);
//                                                    ssss=h;
//                                                }else if(tt>'Z'){
//                                                    JOptionPane.showMessageDialog(null,"版本号最高可以为ZZXXX创建失败");
//                                                    return;
//                                                }
//                                            }
//                                        }
//                                    }else if(df.matches("[a-z]*")){
//                                        if(df.length()==1){
//                                            y=df.charAt(0)+1;
//                                            if(y<='z'){
//                                                realName=(char)(df.charAt(0)+1)+"-"+"a"+(char)('a'+(ll2-'z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                realName="a"+(char)('a'+(y-'z'-1))+"-"+"a"+(char)('a'+(ll2-'z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }
//                                        }else if(df.length()==2){
//                                            y=df.charAt(1)+1;
//                                            if(y<='z'){
//                                                realName=df.charAt(0)+""+(char)(df.charAt(1)+1)+"-"+"a"+(char)('a'+(ll2-'z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else{
//                                                int tt=df.charAt(0)+1;
//                                                if(tt<='z'){
//                                                    realName=(char)(df.charAt(0)+1)+""+(char)('a'+(y-'z'-1))+"-"+"a"+(char)('a'+(ll2-'z'-1));
//                                                    String h=check(realName);
//                                                    ssss=h;
//                                                }else if(tt>'z'){
//                                                    JOptionPane.showMessageDialog(null,"版本号最高可以为zzXXX创建失败");
//                                                    return;
//                                                }
//                                            }
//                                        }
//                                    }else if(df.matches("[0-9]*")){
//                                        if(df.charAt(0)!='0'){
//                                            realName=Integer.parseInt(df)+1+"-"+"a"+(char)('a'+(ll2-'z'-1));
//                                            String h=check(realName);
//                                            ssss=h;
//                                        }else if(df.charAt(0)=='0'){
//                                            k:for(int i=0;i<df.length();i++){
//                                                if(df.charAt(i)!='0'){
//                                                    name1=df1.substring(i);
//                                                    break k;
//                                                }
//                                            }
//                                            int ll3=Integer.parseInt(name1)+Integer.parseInt(d);
//                                            name1=""+ll3;
//                                            if(name1.length()==df.length()){
//                                                realName=name1+"-"+"a"+(char)('a'+(ll2-'z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }else if(name1.length()<df1.length()){
//                                                ll=df1.length()-name1.length();
//                                                for(int j=0;j<ll;j++){
//                                                    realName+="0";
//                                                }
//                                                realName=realName+name1+"-"+"a"+(char)('a'+(ll2-'z'-1));
//                                                String h=check(realName);
//                                                ssss=h;
//                                            }
//                                        }
//                                    }
//                                
//                                }
//                            }
//                        }
//                    }
//                }
//            }
//        }
//        
//        
//        public static String check(String arg){
//            String arg1=jtf2.getText();
//            if(arg1!=null){
//                if(arg1.length()==1){
//                    if(arg.contains(arg1)){
//                        char ar = arg1.charAt(0);
//                        String arg3=arg.replace(arg1, (char)(ar+1)+"");
//                        arg=arg3;
//                    }
//                }else if(arg1.length()>1){
//                    String[] st = arg1.split(",");
//                    for(int i=0;i<st.length;i++){
//                        String ss=st[i];
//                        char ar=ss.charAt(0);
//                        if(arg.contains(st[i])){
//                            String arg3=arg.replace(st[i], (ar+1)+"");
//                            arg=arg3;
//                        }
//                    }
//                }
//            }
//            return arg;
//        }
//
//}