IT俱乐部 Jsp 基于javaweb+jsp实现企业财务记账管理系统

基于javaweb+jsp实现企业财务记账管理系统

前言

运行环境

Java≥6、Tomcat≥7.0、MySQL≥5.5

开发工具

idea/eclipse/MyEclipse

技术框架

JavaWeb JavaBean JSP MVC MySQL Tomcat JavaScript

基础JSP+Servlet或JSP+SSM(Spring、SpringMVC、MyBatis)框架或JSP+SSM+Maven(pom.xml)框架…均可

开发工具:idea或eclipse或myeclipse

适用

课程设计,大作业,毕业设计,项目练习,学习演示等

功能说明

登录、注册、退出、用户模块、公告模块、职工工资模块、企业资产模块、项目经营模块的增删改查管理

部分代码实现JSP 

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
                            投入(万元)
                            收入(万元)
                            利润(万元)
                            盈亏
                        操作
                     
                     
                    <foreach items="${list}" var="vo">
${vo.jingyinName}
                ${vo.jingyinDate}
                ${vo.jingyinTou}
                ${vo.jingyinShou}
 
 
<div class="jb51code">
<pre class="brush:xhtml;">        <div class="modal-content">
            <form action="JingyinServlet">
                <div class="modal-header">
                    <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                        <span aria-hidden="true">×</span>
                    </button>
                    <h4 class="modal-title">删除项目经营</h4>
                </div>
                <div class="modal-body">
                    确认要删除该项目经营记录吗?
                    <div class="form-group hidden">
                        <label class="control-label">(hidden)</label>
                        <input type="hidden" class="form-control" name="action" value="delete"><input type="text" class="form-control" name="id" id="delete-id">
</div>
<div class="jb51code">
<pre class="brush:xhtml;">                </pre>
</div>
<div class="modal-body">
<div class="jb51code">
<pre class="brush:xhtml;">        </pre>
</div><div class="modal fade" id="modal-add" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
 
<div class="modal-header">
                    <button type="button" class="close" data-dismiss="modal"><br>
</button>
</div>
<div class="jb51code">
<pre class="brush:xhtml;">           
        </pre>
</div>
</div>
</div>
<div class="modal fade" id="modal-edit" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<form action="JingyinServlet" onsubmit="return editCheck()"></form>
<div class="modal-header">
                    <button type="button" class="close" data-dismiss="modal" aria-label="Close"><br>
                        <span aria-hidden="true">×</span><br>
                    </button><p></p>
<h4 class="modal-title">更新项目经营</h4>
<p></p></div>
<div class="modal-body">
<div class="form-group hidden">
                        <label class="control-label">(hidden)</label><p></p>
</div>
<div class="jb51code">
<pre class="brush:js;">        }
        if (document.getElementById("edit-jingyinTou").value.trim().length == 0) {
            alert("投入(万元)不能为空");
            return false;
        }
        if (document.getElementById("edit-jingyinShou").value.trim().length == 0) {
            alert("收入(万元)不能为空");
            return false;
        }
        if (document.getElementById("edit-jingyinLirun").value.trim().length == 0) {
            alert("利润(万元)不能为空");
            return false;
        }
        return true;
    }
 
</pre>
</div>
<div class="jb51code">
<pre class="brush:js;">        let button = $(event.relatedTarget);
        let id = button.data('id');
        let modal = $(this);
        $.ajax({
            url: 'JingyinServlet?action=get&id=' + id,
            type: "get",
            success: function (voString) {
                let vo = eval('(' + voString + ')');
                        modal.find('#edit-id').val(vo.id);
                        modal.find('#edit-jingyinName').val(vo.jingyinName);
                        modal.find('#edit-jingyinDate').val(vo.jingyinDate);
                        modal.find('#edit-jingyinTou').val(vo.jingyinTou);
</pre>
</div>
<div class="jb51code">
<pre class="brush:xhtml;">                        <label for="edit-createTime" class="control-label">创建时间:</label>
                        <input type="text" class="form-control" name="createTime" id="edit-createTime"></pre>
</div></div>
<div class="modal-footer">
                    <button type="button" class="btn btn-pill btn-line btn-warning" data-dismiss="modal">取消</button><br>
                    <button type="submit" class="btn btn-pill btn-line btn-danger">提交</button>
                </div>
<p></p>
<p></p></div>
<p></p></div>
</div>
<div class="modal fade" id="modal-delete" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
</div>
<div class="jb51code">
<pre class="brush:xhtml;">                    <div class="form-group">
                        <label class="control-label">盈亏:</label>
                        <input name="jingyinStatus" id="add-jingyinStatus_盈利" type="radio" value="盈利" checked="">盈利
                        <input name="jingyinStatus" id="add-jingyinStatus_亏损" type="radio" value="亏损">亏损
                    </div>
                    <div class="form-group">
                        <label for="add-jingyinText" class="control-label">备注:</label>
                        <textarea style="height: 100px;" class="form-control" name="jingyinText" id="add-jingyinText"></textarea>
</div>
                </pre>
</div>
<div class="modal-footer">
                    <button type="button" class="btn btn-pill btn-line btn-warning" data-dismiss="modal">取消</button><br>
                    <button type="submit" class="btn btn-pill btn-line btn-danger">提交</button>
                </div>
</div><div class="jb51code">
<pre class="brush:xhtml;">    </pre>
</div><div class="modal fade" id="modal-info" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<form></form>
<div class="modal-header">
                    <button type="button" class="close" data-dismiss="modal" aria-label="Close"><br>
                        <span aria-hidden="true">×</span><br>
                    </button><p></p>
</div>
<div class="jb51code">
<pre class="brush:xhtml;">                </pre></div></div></div></div><table class="table table-striped table-hover" style="font-size: 15px;">
<tbody><tr>
<td style="width: 15%;">项目名称:</td>
<td><b id="info-jingyinName"></b></td>
</tr>
<tr>
<td style="width: 15%;">时间:</td>
<td><b id="info-jingyinDate"></b></td>
</tr>
<tr>
<td style="width: 15%;">投入(万元):</td>
<td><b id="info-jingyinTou"></b></td>
</tr>
<tr>
<td style="width: 15%;">收入(万元):</td>
<td><b id="info-jingyinShou"></b></td>
</tr>
<tr>
<td style="width: 15%;">利润(万元):</td>
 
 
 
<td>${vo.jingyinStatus}</td>
                            <th style="text-align: center;">
                                <button class="btn btn-pill btn-line btn-info btn-sm" data-id="${vo.id}" data-toggle="modal" data-target="#modal-info">详情
                                </button>
                                <button class="btn btn-pill btn-line btn-success btn-sm" test="${loginUser.userType != '管理员'}">disabled="disabled" title="没有权限!!!"
                                        data-id="${vo.id}"
                                        data-toggle="modal" data-target="#modal-edit">编辑
                                </button>
                                <button class="btn btn-pill btn-line btn-warning btn-sm" test="${loginUser.userType != '管理员'}">disabled="disabled" title="没有权限!!!" data-id="${vo.id}"
                                        data-toggle="modal" data-target="#modal-delete">删除
                                </button>
                            </th>
                         
 
 
 
 
 
</tr>
</tbody></table>
</div>
</div>
<div class="jb51code">
<pre class="brush:js;">                let vo = eval('(' + voString + ')');
                modal.find('#info-jingyinName').text(vo.jingyinName);
                modal.find('#info-jingyinDate').text(vo.jingyinDate);
                modal.find('#info-jingyinTou').text(vo.jingyinTou);
                modal.find('#info-jingyinShou').text(vo.jingyinShou);
                modal.find('#info-jingyinLirun').text(vo.jingyinLirun);
                modal.find('#info-jingyinStatus').text(vo.jingyinStatus);
                modal.find('#info-jingyinText').text(vo.jingyinText);
            }
        })
    })
    function searchList() {
        window.location.href = "JingyinServlet?action=list&searchColumn="+document.getElementById("searchColumn").value+"&keyword=" + document.getElementById("search_keyword").value;
    }
</pre>
</div>
<div class="jb51code">
<pre class="brush:xhtml;">                        </pre>
</div>
 
</form></div>
</pre></div>
 
 
盈亏:
<b id="info-jingyinStatus"></b>
 
 
备注:
<b id="info-jingyinText"></b>
 
<p></p>
<div class="modal-footer">
                    <button type="button" class="btn btn-pill btn-line btn-warning" data-dismiss="modal">关闭</button><p></p>
</div>
<div class="jb51code">
<pre class="brush:xhtml;">                        <span aria-hidden="true">×</span>
                     
                    <h4 class="modal-title" id="myModalLabel">增加项目经营</h4>
                </pre>
</div>
<div class="modal-body">
<div class="form-group hidden">
                        <label class="control-label">(hidden)</label><br>
                        <input type="text" class="form-control" name="action" value="add">
</div>
<div class="form-group">
                        <label for="add-jingyinName" class="control-label">项目名称:</label><br>
                        <input type="text" class="form-control" name="jingyinName" id="add-jingyinName">
</div>
<div class="jb51code">
<pre class="brush:xhtml;">                    </pre>
</div>
<div class="form-group">
                        <label for="edit-jingyinShou" class="control-label">收入(万元):</label><br>
                        <input type="text" class="form-control" name="jingyinShou" id="edit-jingyinShou">
</div>
<div class="form-group">
                        <label for="edit-jingyinLirun" class="control-label">利润(万元):</label><br>
                        <input type="text" class="form-control" name="jingyinLirun" id="edit-jingyinLirun">
</div>
<div class="form-group">
                        <label class="control-label">盈亏:</label><br>
                               <input name="jingyinStatus" id="edit-jingyinStatus_盈利" type="radio" value="盈利">盈利<br>
                               <input name="jingyinStatus" id="edit-jingyinStatus_亏损" type="radio" value="亏损">亏损
                    </div>
<div class="form-group">
                        <label for="edit-jingyinText" class="control-label">备注:</label><br>
                        <textarea style="height: 100px;" class="form-control" name="jingyinText" id="edit-jingyinText"></textarea>
</div>
</div>
<div class="jb51code">
<pre class="brush:xhtml;">                    <div class="form-group">
                        <label for="add-jingyinDate" class="control-label">时间:</label>
                        <input type="text" class="form-control" name="jingyinDate" id="add-jingyinDate">
</div>
                    <div class="form-group">
                        <label for="add-jingyinTou" class="control-label">投入(万元):</label>
                        <input type="text" class="form-control" name="jingyinTou" id="add-jingyinTou">
</div>
                    <div class="form-group">
                        <label for="add-jingyinShou" class="control-label">收入(万元):</label>
                        <input type="text" class="form-control" name="jingyinShou" id="add-jingyinShou">
</div>
                    <div class="form-group">
                        <label for="add-jingyinLirun" class="control-label">利润(万元):</label>
                        <input type="text" class="form-control" name="jingyinLirun" id="add-jingyinLirun">
</div>
<div class="jb51code">
<pre class="brush:xhtml;">
 
 
 
 
 
 
    <meta charset="UTF-8"><title>项目经营管理</title><link rel="stylesheet" href="css/bootstrap.css"><link rel="stylesheet" href="css/main.css"><script src="js/jquery-3.5.1.js"></script><script src="js/bootstrap.js"></script></pre>
</div>
<div class="jb51code">
<pre class="brush:xhtml;">           
        </pre>
</div>
</pre></div>
<div class="container-fluid">
<div class="row">
<div class="col-sm-3 col-md-2 sidebar">
<p>            <include page="menu.jsp"><param value="active" name="Jingyin_active"></include>
</p></div>
<p></p>
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
<div class="row">
<div class="col-sm-7">
<div class="input-group">
                        <input class="form-control" type="hidden" id="searchColumn" name="searchColumn" value="jingyin_name"><input class="form-control" type="text" id="search_keyword" name="search_keyword" placeholder="项目名称"><span class="input-group-btn"><button class="btn btn-pill btn-line btn-primary" type="button" onclick="searchList()">搜索</button></span>
                    </div>
</div>
<div class="jb51code">
<pre class="brush:xhtml;">                        <input type="text" readonly="" class="form-control" name="id" id="edit-id"></pre>
</div>
<div class="form-group">
                        <label for="edit-jingyinName" class="control-label">项目名称:</label><br>
                        <input type="text" class="form-control" name="jingyinName" id="edit-jingyinName">
</div>
<div class="form-group">
                        <label for="edit-jingyinDate" class="control-label">时间:</label><br>
                        <input type="text" class="form-control" name="jingyinDate" id="edit-jingyinDate">
</div>
<div class="form-group">
                        <label for="edit-jingyinTou" class="control-label">投入(万元):</label><p></p>
</div>
<div class="jb51code">
<pre class="brush:js;">                        modal.find('#edit-jingyinLirun').val(vo.jingyinLirun);
                        for (let val of "盈利/亏损".split('/')) {
                            if (val == vo.jingyinStatus) {
                                modal.find('#edit-jingyinStatus_' + vo.jingyinStatus).prop("checked", true);
                            } else {
                                modal.find('#edit-jingyinStatus_' + vo.jingyinStatus).removeAttr("checked");
                            }
                        };
                        modal.find('#edit-jingyinText').val(vo.jingyinText);
            }
        })
    })
    $('#modal-info').on('show.bs.modal', function (event) {
        let button = $(event.relatedTarget);
        let id = button.data('id');
        let modal = $(this);
        $.ajax({
            url: 'JingyinServlet?action=get&id=' + id,
            type: "get",
</pre>
</div>
<div class="jb51code">
<pre class="brush:xhtml;">                <div class="col-sm-5">
                    <button type="button" test="${loginUser.userType != '管理员'}">disabled="disabled" title="没有权限!!!" class="btn btn-pill btn-line btn-danger" data-toggle="modal" data-target="#modal-add">添加项目经营
                    </button>
                </div>
            </pre>
</div>
<div class="table-responsive">
<div class="jb51code">
<pre class="brush:xhtml;">
<nav class="navbar navbar-inverse navbar-fixed-top"><div class="container-fluid">
        <div class="navbar-header">
            <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
                <span class="sr-only">企业财务记账管理系统</span> <span class="icon-bar"></span>
                <span class="icon-bar"></span> <span class="icon-bar"></span>
            </button>
            <a class="navbar-brand" href="#" rel="external nofollow">企业财务记账管理系统</a>
        </div>
        <div id="navbar" class="navbar-collapse collapse">
            <ul class="nav navbar-nav navbar-right">
<li><a href="#" rel="external nofollow">欢迎:<span style="color: yellow">${loginUser.username}</span></a></li>
 
</ul>
</div>
<div class="jb51code">
<pre class="brush:js;">    function addCheck() {
        //根据ID获取值
        if (document.getElementById("add-jingyinName").value.trim().length == 0) {
            alert("项目名称不能为空");
            return false;
        }
        if (document.getElementById("add-jingyinDate").value.trim().length == 0) {
            alert("时间不能为空");
            return false;
        }
        if (document.getElementById("add-jingyinTou").value.trim().length == 0) {
            alert("投入(万元)不能为空");
            return false;
        }
</pre>
</div>
<div class="jb51code">
<pre class="brush:xhtml;">                </pre>
</div>
<div class="modal-footer">
                    <button type="button" class="btn btn-pill btn-line btn-warning" data-dismiss="modal">取消</button><br>
                    <button type="submit" class="btn btn-pill btn-line btn-warning">删除</button>
                </div>
<p></p></div>
</nav>
</pre></div><p><script><br />
    $('#modal-delete').on('show.bs.modal', function (event) {<br />
        let button = $(event.relatedTarget);<br />
        let id = button.data('id');<br />
        let modal = $(this);<br />
        modal.find('#delete-id').val(id);<br />
    })</p>
<div class="jb51code">
<pre class="brush:js;">
            alert("收入(万元)不能为空");
            return false;
        }
        if (document.getElementById("add-jingyinLirun").value.trim().length == 0) {
            alert("利润(万元)不能为空");
            return false;
        }
        return true;
    }
    //编辑表单提交之前进行检查,如果return false,则不允许提交
    function editCheck() {
        //根据ID获取值
        if (document.getElementById("edit-jingyinName").value.trim().length == 0) {
            alert("项目名称不能为空");
            return false;
        }
        if (document.getElementById("edit-jingyinDate").value.trim().length == 0) {
            alert("时间不能为空");
 
 
<p class="maodian"><a name="_label2">
<h2>效果图
<p style="text-align: center;"><img decoding="async" src="//img.jbzj.com/file_images/article/202112/2021122714041424.jpg" alt="">
<p style="text-align: center;"><img decoding="async" src="//img.jbzj.com/file_images/article/202112/2021122714041525.jpg" alt="">
<p style="text-align: center;"><img decoding="async" src="//img.jbzj.com/file_images/article/202112/2021122714041526.jpg" alt="">
<p style="text-align: center;"><img decoding="async" src="//img.jbzj.com/file_images/article/202112/2021122714041527.jpg" alt="">
<p style="text-align: center;"><img decoding="async" src="//img.jbzj.com/file_images/article/202112/2021122714041528.jpg" alt="">
<p style="text-align: center;"><img decoding="async" src="//img.jbzj.com/file_images/article/202112/2021122714041529.jpg" alt="">
<p style="text-align: center;"><img decoding="async" src="//img.jbzj.com/file_images/article/202112/2021122714041530.jpg" alt="">
<p style="text-align: center;"><img decoding="async" src="//img.jbzj.com/file_images/article/202112/2021122714041531.jpg" alt="">
<p style="text-align: center;"><img decoding="async" src="//img.jbzj.com/file_images/article/202112/2021122714041532.png" alt="">
<p style="text-align: center;"><img decoding="async" src="//img.jbzj.com/file_images/article/202112/2021122714041533.jpg" alt="">
<p style="text-align: center;"><img decoding="async" src="//img.jbzj.com/file_images/article/202112/2021122714041634.jpg" alt="">
<p style="text-align: center;"><img decoding="async" src="//img.jbzj.com/file_images/article/202112/2021122714041635.jpg" alt="">
<p style="text-align: center;"><img decoding="async" src="//img.jbzj.com/file_images/article/202112/2021122714041636.jpg" alt="">
<p>以上就是基于javaweb+jsp实现企业财务记账管理系统的详细内容,更多关于javaweb jsp企业财务记账管理系统的资料请关注IT俱乐部其它相关文章!
                             
                            <div class="art_xg">
                                <b>您可能感兴趣的文章:<ul>
<li><a href="https://www.2it.club/article/233775.htm" title="基于javaweb+jsp实现个人日记管理系统" target="_blank">基于javaweb+jsp实现个人日记管理系统
<li><a href="https://www.2it.club/article/232228.htm" title="基于javaweb+jsp实现学生宿舍管理系统" target="_blank">基于javaweb+jsp实现学生宿舍管理系统
<li><a href="https://www.2it.club/article/230346.htm" title="基于javaweb+jsp实现企业车辆管理系统" target="_blank">基于javaweb+jsp实现企业车辆管理系统
<li><a href="https://www.2it.club/article/243586.htm" title="基于javaweb+jsp的游泳馆会员管理系统" target="_blank">基于javaweb+jsp的游泳馆会员管理系统
 
 
 
                         
                         
                        <div class="lbd_bot clearfix">
                            <span id="art_bot" class="jbTestPos">
                         
                        <div class="tags clearfix">
                            <i class="icon-tag">
                            <ul class="meta-tags">
<li class="tag item"><a href="http://common.jb51.net/tag/javaweb/1.htm" target="_blank" title="搜索关于javaweb的文章" rel="nofollow">javaweb
<li class="tag item"><a href="http://common.jb51.net/tag/jsp/1.htm" target="_blank" title="搜索关于jsp的文章" rel="nofollow">jsp
<li class="tag item"><a href="http://common.jb51.net/tag/%E8%AE%B0%E8%B4%A6%E7%B3%BB%E7%BB%9F/1.htm" target="_blank" title="搜索关于记账系统的文章" rel="nofollow">记账系统
 
                             
 
                        <div class="lbd clearfix">
                            <span id="art_down" class="jbTestPos">
                         
                        <div id="shoucang">
                        <div class="xgcomm clearfix">
                            <h2>相关文章
                            <ul>
<li class="lbd clearfix"><span id="art_xg" class="jbTestPos">
<li><div class="item-inner">
<a href="https://www.2it.club/article/21319.htm" title="jsp下页面跳转的几种方法小结" class="img-wrap" target="_blank"> <img decoding="async" alt="jsp下页面跳转的几种方法小结" src="//img.jbzj.com/images/xgimg/bcimg0.png"><div class="rbox"><div class="rbox-inner">
<p><a class="link title" target="_blank" href="https://www.2it.club/article/21319.htm" title="jsp下页面跳转的几种方法小结">jsp下页面跳转的几种方法小结
<div class="item-info">
<div class="js">jsp 页面跳转的几种方法,需要的朋友可以参考下。
<span class="lbtn" style="float:right"> 2009-12-12
 
 
 
<li><div class="item-inner">
<a href="https://www.2it.club/article/139099.htm" title="Jsp中request的3个基础实践" class="img-wrap" target="_blank"> <img decoding="async" alt="Jsp中request的3个基础实践" src="//img.jbzj.com/images/xgimg/bcimg1.png"><div class="rbox"><div class="rbox-inner">
<p><a class="link title" target="_blank" href="https://www.2it.club/article/139099.htm" title="Jsp中request的3个基础实践">Jsp中request的3个基础实践
<div class="item-info">
<div class="js">本篇文章给大家分享了Jsp内置对象request的3个基础实践以及相关代码分享,有需要的朋友学习下。
<span class="lbtn" style="float:right"> 2018-04-04
 
 
 
<li><div class="item-inner">
<a href="https://www.2it.club/article/61355.htm" title="jsp、css中引入外部资源相对路径问题分析" class="img-wrap" target="_blank"> <img decoding="async" alt="jsp、css中引入外部资源相对路径问题分析" src="//img.jbzj.com/images/xgimg/bcimg2.png"><div class="rbox"><div class="rbox-inner">
<p><a class="link title" target="_blank" href="https://www.2it.club/article/61355.htm" title="jsp、css中引入外部资源相对路径问题分析">jsp、css中引入外部资源相对路径问题分析
<div class="item-info">
<div class="js">这篇文章主要介绍了jsp、css中引入外部资源相对路径的问题 ,需要的朋友可以参考下
<span class="lbtn" style="float:right"> 2015-02-02
 
 
 
<li><div class="item-inner">
<a href="https://www.2it.club/article/95048.htm" title="jsp利用echarts实现报表统计的实例" class="img-wrap" target="_blank"> <img decoding="async" alt="jsp利用echarts实现报表统计的实例" src="//img.jbzj.com/images/xgimg/bcimg3.png"><div class="rbox"><div class="rbox-inner">
<p><a class="link title" target="_blank" href="https://www.2it.club/article/95048.htm" title="jsp利用echarts实现报表统计的实例">jsp利用echarts实现报表统计的实例
<div class="item-info">
<div class="js">echarts用来做数据报表的一个展示效果了,本文介绍了jsp利用echarts实现报表统计的实例,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。
<span class="lbtn" style="float:right"> 2016-10-10
 
 
 
<li><div class="item-inner">
<a href="https://www.2it.club/article/119516.htm" title="JSP实用教程之简易图片验证码的实现方法(附源码)" class="img-wrap" target="_blank"> <img decoding="async" alt="JSP实用教程之简易图片验证码的实现方法(附源码)" src="//img.jbzj.com/images/xgimg/bcimg4.png"><div class="rbox"><div class="rbox-inner">
<p><a class="link title" target="_blank" href="https://www.2it.club/article/119516.htm" title="JSP实用教程之简易图片验证码的实现方法(附源码)">JSP实用教程之简易图片验证码的实现方法(附源码)
<div class="item-info">
<div class="js">图片验证码对大家来说应该再熟悉不过了,而图片验证码的实现主要的技术点是如何生成一个图片,下面这篇文章主要跟大家介绍了关于JSP实用教程之实现简易图片验证码的方法,文中介绍的非常详细,需要的朋友们下面来一起看看吧。
<span class="lbtn" style="float:right"> 2017-07-07
 
 
 
<li><div class="item-inner">
<a href="https://www.2it.club/article/42018.htm" title="jsp判断请求来自手机示例代码" class="img-wrap" target="_blank"> <img decoding="async" alt="jsp判断请求来自手机示例代码" src="//img.jbzj.com/images/xgimg/bcimg5.png"><div class="rbox"><div class="rbox-inner">
<p><a class="link title" target="_blank" href="https://www.2it.club/article/42018.htm" title="jsp判断请求来自手机示例代码">jsp判断请求来自手机示例代码
<div class="item-info">
<div class="js">如何判断请求来自手机,实现的方法有很多,在本文为大家详细介绍下jsp中是如何做到的,感兴趣的朋友不要错过
<span class="lbtn" style="float:right"> 2013-10-10
 
 
 
<li><div class="item-inner">
<a href="https://www.2it.club/article/2678.htm" title="使用JSP读取客户端信息" class="img-wrap" target="_blank"> <img decoding="async" alt="使用JSP读取客户端信息" src="//img.jbzj.com/images/xgimg/bcimg6.png"><div class="rbox"><div class="rbox-inner">
<p><a class="link title" target="_blank" href="https://www.2it.club/article/2678.htm" title="使用JSP读取客户端信息">使用JSP读取客户端信息
<div class="item-info">
<div class="js">使用JSP读取客户端信息...
<span class="lbtn" style="float:right"> 2006-10-10
 
 
 
<li><div class="item-inner">
<a href="https://www.2it.club/article/72835.htm" title="Java Web开发之MD5加密用法分析" class="img-wrap" target="_blank"> <img decoding="async" alt="Java Web开发之MD5加密用法分析" src="//img.jbzj.com/images/xgimg/bcimg7.png"><div class="rbox"><div class="rbox-inner">
<p><a class="link title" target="_blank" href="https://www.2it.club/article/72835.htm" title="Java Web开发之MD5加密用法分析">Java Web开发之MD5加密用法分析
<div class="item-info">
<div class="js">这篇文章主要介绍了Java Web开发之MD5加密用法,较为详细的分析了JSP采用MD5加密的功能、特点及实现技巧,具有一定参考借鉴价值,需要的朋友可以参考下
<span class="lbtn" style="float:right"> 2015-09-09
 
 
 
<li><div class="item-inner">
<a href="https://www.2it.club/article/2521.htm" title="jsp留言板源代码三: 给jsp初学者." class="img-wrap" target="_blank"> <img decoding="async" alt="jsp留言板源代码三: 给jsp初学者." src="//img.jbzj.com/images/xgimg/bcimg8.png"><div class="rbox"><div class="rbox-inner">
<p><a class="link title" target="_blank" href="https://www.2it.club/article/2521.htm" title="jsp留言板源代码三: 给jsp初学者.">jsp留言板源代码三: 给jsp初学者.
<div class="item-info">
<div class="js">jsp留言板源代码三: 给jsp初学者....
<span class="lbtn" style="float:right"> 2006-10-10
 
 
 
<li><div class="item-inner">
<a href="https://www.2it.club/article/74223.htm" title="JSP清除页面缓存常用方法小结" class="img-wrap" target="_blank"> <img decoding="async" alt="JSP清除页面缓存常用方法小结" src="//img.jbzj.com/images/xgimg/bcimg9.png"><div class="rbox"><div class="rbox-inner">
<p><a class="link title" target="_blank" href="https://www.2it.club/article/74223.htm" title="JSP清除页面缓存常用方法小结">JSP清除页面缓存常用方法小结
<div class="item-info">
<div class="js">这篇文章主要介绍了JSP清除页面缓存常用方法,实例总结了JSP清理页面缓存、cookie缓存、session缓存及利用JavaScript清理缓存的相关技巧,需要的朋友可以参考下
<span class="lbtn" style="float:right"> 2015-11-11
 
 
 
 
 
                        <div class="lbd clearfix mt5">
                            <span id="art_down2" class="jbTestPos">
                         
                        <a href="">
                        <div id="comments">
                            <h2>最新评论
                            <div class="pd5">
                                <div id="SOHUCS" sid="art_233044">
                             
                         
                     
                     
                 
                 
 
                <div class="main-right">
                    <div id="sidebar-right">
                        <div class="r300 clearfix"><span id="side_up" class="jbTestPos">
                        <div class="sidebox-recomm">
                        <div class="r300 clearfix"><span id="zbafer" class="jbTestPos">
                        <div class="sidebox bor-blue">
                            <div class="bor-default pb10">
                                <h4 class="blue">大家感兴趣的内容
                                <ul class="newsList newList-in">
<li>
<em class="no1">1<a href="https://www.2it.club/article/20042.htm" title="JSP EL表达式详细介绍" target="_blank">JSP EL表达式详细介绍
 
<li>
<em class="no2">2<a href="https://www.2it.club/article/21319.htm" title="jsp下页面跳转的几种方法小结" target="_blank">jsp下页面跳转的几种方法小结
 
<li>
<em class="no3">3<a href="https://www.2it.club/article/16168.htm" title="Jsp生成页面验证码的方法[附代码]" target="_blank">Jsp生成页面验证码的方法[附代码]
 
<li>
<em class="no4">4<a href="https://www.2it.club/article/46956.htm" title="在jsp页面如何获得url参数" target="_blank">在jsp页面如何获得url参数
 
<li>
<em class="no5">5<a href="https://www.2it.club/article/55129.htm" title="Spring MVC 框架搭建配置方法及详解" target="_blank">Spring MVC 框架搭建配置方法及详解
 
<li>
<em class="no6">6<a href="https://www.2it.club/article/19141.htm" title="jsp web.xml文件的作用及基本配置" target="_blank">jsp web.xml文件的作用及基本配置
 
<li>
<em class="no7">7<a href="https://www.2it.club/article/33788.htm" title="JSP自定义标签Taglib实现过程重点总结" target="_blank">JSP自定义标签Taglib实现过程重点总结
 
<li>
<em class="no8">8<a href="https://www.2it.club/article/36235.htm" title="Servlet+Jsp实现图片或文件的上传功能具体思路及代码" target="_blank">Servlet+Jsp实现图片或文件的上传功能具体思路及代码
 
<li>
<em class="no9">9<a href="https://www.2it.club/article/84837.htm" title="JSP实现用户登录、注册和退出功能" target="_blank">JSP实现用户登录、注册和退出功能
 
<li>
<em class="no10">10<a href="https://www.2it.club/article/40538.htm" title="将html页改成jsp的两种方式" target="_blank">将html页改成jsp的两种方式
 
                                 
 
                         
                        <div class="r300 clearfix mt10"><span id="idctu" class="jbTestPos">
                        <div class="sidebox bor-blue">
                            <div class="bor-default pb10">
                                <h4 class="blue">最近更新的内容
                                <ul class="newsListA">
<li><a href="https://www.2it.club/article/2651.htm" title="Jsp结合XML+XSLT将输出转换为Html格式" target="_blank">Jsp结合XML+XSLT将输出转换为Html格式
<li><a href="https://www.2it.club/article/2581.htm" title="如何使用JSP连接DB2数据库" target="_blank">如何使用JSP连接DB2数据库
<li><a href="https://www.2it.club/article/2569.htm" title="JDBCTM 指南:入门2 - 连接" target="_blank">JDBCTM 指南:入门2 - 连接
<li><a href="https://www.2it.club/article/2495.htm" title="jsp源码实例1(输出)" target="_blank">jsp源码实例1(输出)
<li><a href="https://www.2it.club/article/2681.htm" title="JSP生成jpeg图片用于投票" target="_blank">JSP生成jpeg图片用于投票
<li><a href="https://www.2it.club/article/2574.htm" title="打开页面就是全屏的方法" target="_blank">打开页面就是全屏的方法
<li><a href="https://www.2it.club/article/2536.htm" title="JSP多种web应用服务器导致JSP源码泄漏漏洞" target="_blank">JSP多种web应用服务器导致JSP源码泄漏漏洞
<li><a href="https://www.2it.club/article/2481.htm" title="JSP入门教程(1)" target="_blank">JSP入门教程(1)
<li><a href="https://www.2it.club/article/43265.htm" title="jsp action中保存和修改的关系" target="_blank">jsp action中保存和修改的关系
<li><a href="https://www.2it.club/article/95080.htm" title="JavaScript结合PHP实现网页制作中双下拉菜单的动态实现" target="_blank">JavaScript结合PHP实现网页制作中双下拉菜单的动态实现
                                 
 
                         
                        <div class="r300 clearfix mt10">
                            <span id="idctu1" class="jbTestPos">
                         
                        <div class="sidebox bor-blue">
                            <div class="bor-default pb10">
                                <h4 class="blue">常用在线小工具
                                <ul class="newsListA"><span id="bctools" class="jbTestPos">
 
                         
                        <div class="r300 clearfix mt10"><span id="idctu2" class="jbTestPos">
                        <div class="mt10 rFixedBox">
                            <div class="r300 clearfix"><span id="r2gg" class="jbTestPos">
                            <div class="r300 clearfix mt10">
                                <span id="rbbd" class="jbTestPos">
                             
                         
                     
                 
                 
             
         
         
        <div id="right-share">
            <div class="right-share jb-share" id="jb-share">
                <a class="rshare-weixin" title="">微信
                <a rel="nofollow" class="rshare-qzone" target="_blank" href="http://tougao.jb51.net/" title="投稿">投稿
                <a rel="nofollow" class="rshare-sqq" target="_blank" href="https://task.jb51.net/" title="脚本任务">脚本任务
                <a rel="nofollow" class="rshare-tsina" target="_blank" href="http://tools.jb51.net/" title="在线工具">在线工具
             
            <a class="rshare-top" onclick="javascript:;">
            <div id="weixin-code" class="hide">
                <div class="popup_weixin_head">
                    <p>关注微信公众号
                    <div id="code"><img decoding="async" src="//img.jbzj.com/skin/2018/images/erwm.jpg" alt="扫一扫" width="100" height="100">
                 
             
         
         
         
        <div class="AutoCatelog">
            <div class="AutoCatelogLlist" id="CatelogList" style="display:none">
         
     
     
    <div id="footer">
        <div class="footer-bottom">
            <p>
                <a rel="nofollow" href="https://www.2it.club/about.htm" target="_blank">关于我们 -
                <a rel="nofollow" href="https://www.2it.club/support.htm" target="_blank">广告合作 -
                <a rel="nofollow" href="https://www.2it.club/linkus.htm" target="_blank">联系我们 -
                <a rel="nofollow" href="https://www.2it.club/sm.htm" target="_blank">免责声明 -
                <a rel="nofollow" href="https://www.2it.club/sitemap.htm" target="_blank">网站地图 -
                <a rel="nofollow" href="https://www.2it.club/article/tencent://message/?uin=461478385&Site=https://www.2it.club" target="_blank">投诉建议 -
                <a rel="nofollow" href="https://www.2it.club/up.htm" target="_blank">在线投稿
             
            <p>©CopyRight 2006-2021 JB51.Net Inc All Rights Reserved. IT俱乐部 版权所有
         
     
     
    <script type="text/javascript">
    </script><link type="text/css" rel="stylesheet" href="/jslib/syntaxhighlighter/styles/shCore.css">
<link type="text/css" rel="Stylesheet" href="/jslib/syntaxhighlighter/styles/shThemeDefault.css">
<script type="text/javascript" src="/jslib/syntaxhighlighter/scripts2022/shHighlighter.js"></script><script type="text/javascript">
        /*更多导航*/
        $("#nav p").hover(function() {
            $(this).addClass("hover")
        }, function() {
            $(this).removeClass("hover")
        });
        if (top.location != self.location) top.location = self.location;
        var varwindow = $(window);
        $('#content').find('img').each(function() {
            var img = this;
            if (img.width >= 800 && !$(this).hasClass("nohref")) {
                img.style.width = "800px";
                img.style.height = "auto";
            }
        });
 
        function sideFixed() {
            var scrolltop = document.body.scrollTop || document.documentElement.scrollTop;
            if (ww > 440) {
                if (550 <= scrolltop){
                    $('#right-share').slideDown();
                } else {
                    $('#right-share').slideUp();
                }
                if(suoyin=='ok'&&typeof cataloguetop=='number'){
                    if (cataloguetop <= scrolltop){
                        //$('#navCategory').css('visibility','hidden');
                        $('#CatelogList').fadeIn();
                    } else {
                        //$('#navCategory').css('visibility','visible');
                        $('#CatelogList').fadeOut();
                    }
                }
            }
        }
        var ww = varwindow.width();
         
        $('#right-share').addClass('lefts');
        if(suoyin=='ok'){
            $(window).resize(function() {
                show_suoyin();
            });
            var cataloguetop=$('#navCategory').offset().top+$('#navCategory').outerHeight();
            show_suoyin();
            $(function(){
                cataloguetop=$('#navCategory').offset().top+$('#navCategory').outerHeight();
            })
        }
         
        $(window).scroll(function() {
            //rFixedBox跟随滚动
            var h = varwindow.height();
            var top = varwindow.scrollTop();
            var rFixedBox = $('.rFixedBox').prev().offset();
            var fixedTop = rFixedBox.top;
 
            if (top >= fixedTop + 330) {
                var h1 = parseInt($('#content').children('.main').height());
                $('.rFixedBox').css({
                    'position': 'fixed',
                    'top': 0
                });
            } else {
                $('.rFixedBox').css({
                    'position': 'static',
                    'top': 0
                });
            }
            /* return true;*/
 
            /*右侧快捷菜单*/
            sideFixed();
        });
        $(window).scroll();
         
        $('.rshare-weixin').hover(function() {
            $('#weixin-code').removeClass('hide');
        }, function() {
            $('#weixin-code').addClass('hide');
        });
        /*二维码*/
        $('#right-share .rshare-top').on('click', function() {
            $('html,body').animate({
                'scrollTop': 0
            }, 500);
        });
         
 
        function show_suoyin() {
            var vww = 0;
            vww = varwindow.width();
             
            if (suoyin == "ok") {
                if (vww > 1600) {
                    var catell = document.getElementById("CatelogList");
                     
                    if (vww < 1920) {
                        catell.style.width = (((vww - 1200) / 2) - 20) + "px";
                    } else {
                        catell.style.width = "340px";
                    }
 
                    if (!window.suoyinobj) {
                        window.suoyinobj = new katelog({
                            contentEl: 'content',
                            catelogEl: 'CatelogList',
                            linkClass: 'AutoCatelogLink',
                            linkActiveClass: 'CatelogActive',
                            supplyTop: 20,
                            selector: ['h2', 'h3', 'h4'],
                            active: function(el) {
                                //console.log(el);
                            }
                        });
                    }
                } else {
                    window.suoyinobj = null;
                    //GenerateContentList();
                }
            }
        }
 
        SyntaxHighlighter.autoloader(
            'applescript            /jslib/syntaxhighlighter/scripts2022/shBrushAppleScript.js',
            'actionscript3 as3      /jslib/syntaxhighlighter/scripts2022/shBrushAS3.js',
            'bash shell             /jslib/syntaxhighlighter/scripts2022/shBrushBash.js',
            'coldfusion cf          /jslib/syntaxhighlighter/scripts2022/shBrushColdFusion.js',
            'cpp c                  /jslib/syntaxhighlighter/scripts2022/shBrushCpp.js',
            'obj-c objc             /jslib/syntaxhighlighter/scripts2022/shBrushObjC.js',
            'c# c-sharp csharp      /jslib/syntaxhighlighter/scripts2022/shBrushCSharp.js',
            'css                    /jslib/syntaxhighlighter/scripts2022/shBrushCss.js',
            'delphi pascal          /jslib/syntaxhighlighter/scripts2022/shBrushDelphi.js',
            'diff patch pas         /jslib/syntaxhighlighter/scripts2022/shBrushDiff.js',
            'erl erlang             /jslib/syntaxhighlighter/scripts2022/shBrushErlang.js',
            'groovy                 /jslib/syntaxhighlighter/scripts2022/shBrushGroovy.js',
            'haxe hx                /jslib/syntaxhighlighter/scripts2022/shBrushHaxe.js',
            'java                   /jslib/syntaxhighlighter/scripts2022/shBrushJava.js',
            'jfx javafx             /jslib/syntaxhighlighter/scripts2022/shBrushJavaFX.js',
            'js jscript javascript  /jslib/syntaxhighlighter/scripts2022/shBrushJScript.js',
            'perl pl                /jslib/syntaxhighlighter/scripts2022/shBrushPerl.js',
            'php                    /jslib/syntaxhighlighter/scripts2022/shBrushPhp.js',
            'text plain             /jslib/syntaxhighlighter/scripts2022/shBrushPlain.js',
            'py python              /jslib/syntaxhighlighter/scripts2022/shBrushPython.js',
            'ruby rails ror rb      /jslib/syntaxhighlighter/scripts2022/shBrushRuby.js',
            'scala                  /jslib/syntaxhighlighter/scripts2022/shBrushScala.js',
            'sql                    /jslib/syntaxhighlighter/scripts2022/shBrushSql.js',
            'vb vbnet               /jslib/syntaxhighlighter/scripts2022/shBrushVb.js',
            'ps powershell          /jslib/syntaxhighlighter/scripts2022/shBrushPowerShell.js',
            'xml xhtml xslt html    /jslib/syntaxhighlighter/scripts2022/shBrushXml.js',
            'go golang              /jslib/syntaxhighlighter/scripts2022/shBrushGo.js',
            'json                   /jslib/syntaxhighlighter/scripts2022/shBrushJSON.js',
            'yml yaml               /jslib/syntaxhighlighter/scripts2022/shBrushYaml.js'
        );
        SyntaxHighlighter.all();
        (function() {
            var bp = document.createElement('script');
            var curProtocol = window.location.protocol.split(':')[0];
            if (curProtocol === 'https') {
                bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
            } else {
                bp.src = 'http://push.zhanzhang.baidu.com/push.js';
            }
            var s = document.getElementsByTagName("script")[0];
            s.parentNode.insertBefore(bp, s);
        })();
    </script><script type="text/javascript" src="//icws.jb51.net/good2021/arc2019.js"></script></p><div id="tongji">
<script type="text/javascript" src="//icws.jb51.net/tongji/tongji.js"></script>
</div><table class="table table-striped table-hover">
<thead>
<tr>
<th>项目名称</th>
 
 
<script type="text/javascript" src="//cdn.staticfile.org/viewerjs/1.5.0/viewer.min.js"></script><script type="text/javascript">
if ('undefined' == typeof(window.Viewer)) {
        document.write(unescape("%3Cscr"+"ipt src='/skin/js/viewer.min.js' type='text/javascript'%3E%3C/scr"+"ipt%3E"));
    }
var viewer = new Viewer(document.getElementById('content'));
(function(){
document.write('<scr'+'ipt src="' + src + '" id="sozz"></scr'+'ipt>');
})();
</script><script src="/skin/js/viewer.min.js" type="text/javascript"></script><script type="text/javascript" src="//www.2it.club/pl.asp?id=233044"></script><script type="application/ld+json">
        {
            "@context": "https://ziyuan.baidu.com/contexts/cambrian.jsonld",
            "@id": "https://www.2it.club/article/233044.htm",
            "appid": "1549322409310619",
            "title": "基于javaweb+jsp实现企业财务记账管理系统",
            "description": "这篇文章主要介绍了基于javaweb+jsp实现的企业财务记账管理系统,文中的示例代码对我们学习jsp编程有一定的帮助,感兴趣的小伙伴可以跟随小编一起学习一下",
            "pubDate": "2021-12-27T14:10:52",
            "upDate": "2021-12-27T14:10:52"
        }
 
    </script>
</tr></thead></table>
</div>
</div>
</div>
</div>
</div></foreach>
本文收集自网络,不代表IT俱乐部立场,转载请注明出处。https://www.2it.club/code/jsp/2880.html
上一篇
下一篇
联系我们

联系我们

在线咨询: QQ交谈

邮箱: 1120393934@qq.com

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部