yzt
2023-05-08 24e1c6a1c3d5331b5a4f1111dcbae3ef148eda1a
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
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
 
package com.hxzkoa.controller;
 
import com.hxzkoa.json.tb_cojilu;
import com.hxzkoa.json.tb_heart_record;
import com.hxzkoa.json.tb_realkaoqing;
import com.hxzkoa.json.tb_tag;
import com.hxzkoa.json.vo_kaoqin_p;
import com.hxzkoa.services.AttendanceService;
import com.hxzkoa.util.Config;
import com.hxzkoa.util.ExcelUtils;
import com.hxzkoa.util.PageUtil;
import com.hxzkoa.util.RequestUtils;
import java.io.IOException;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import net.sf.json.JSONObject;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
 
@Controller
public class AttendanceController {
    @Autowired
    private AttendanceService attendanceService;
 
    public AttendanceController() {
    }
 
    @RequestMapping(value = {"/realAttendance.do"}, method = {RequestMethod.POST, RequestMethod.GET}
    )
    public String realAttendance(HttpServletRequest request) {
        String toPage = "forward:/hxzk/attendance/realDetail.jsp";
        List<vo_kaoqin_p> realkaoqingsManagementList = this.attendanceService.getRealAttendance(1);
        int count = this.attendanceService.getRealAttendanceCount();
        int curPage = 1;
        request.setAttribute("realkaoqingsManagementList", realkaoqingsManagementList);
        int minPage = PageUtil.getMinPage(count);
        request.setAttribute("pageList", PageUtil.getPage(minPage));
        request.setAttribute("curPage", Integer.valueOf(curPage));
        return toPage;
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/realAttendance_page.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public String realAttendance_page(HttpServletRequest request) {
        String pageStr = request.getParameter("page");
        String curPageStr = request.getParameter("curPage");
        int count = this.attendanceService.getRealAttendanceCount();
        int minPage = PageUtil.getMinPage(count);
        int curPage = Integer.parseInt(curPageStr);
        int page = 1;
        if ("pre".equals(pageStr)) {
            if (curPage > 1) {
                page = curPage - 1;
            }
        } else if ("next".equals(pageStr)) {
            if (curPage < minPage) {
                page = curPage + 1;
            }
        } else {
            page = Integer.parseInt(pageStr);
        }
 
        List<vo_kaoqin_p> realkaoqingsManagementList = this.attendanceService.getRealAttendance(page);
        List<Integer> pageList = PageUtil.getPage(PageUtil.getLocPage(page, curPage), page, minPage);
        JSONObject json = new JSONObject();
        json.put("dataList", realkaoqingsManagementList);
        json.put("pageList", pageList);
        json.put("curPage", page);
        return json.toString();
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/realAttendance_delete.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public void realAttendance_delete(HttpServletRequest request) {
        String checkValStr = request.getParameter("checkVal");
        checkValStr = checkValStr.replaceAll("\"", "");
        String[] checkVal = checkValStr.split(",");
        this.attendanceService.realAttendance_delete(checkVal);
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/realAttendance_deleteAll.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public void realAttendance_deleteAll(HttpServletRequest request) {
        this.attendanceService.realAttendance_deleteAll();
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/realAttendance_search.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public String realAttendance_search(HttpServletRequest request) throws IOException {
        JSONObject json = new JSONObject();
        String input = request.getParameter("input");
        List realkaoqingsManagementList;
        if (!"".equals(input) && input != null) {
            int curPage = 1;
            List<Integer> pageList = new ArrayList();
            realkaoqingsManagementList = this.attendanceService.searchRealAttendance(input);
            pageList.add(1);
            json.put("dataList", realkaoqingsManagementList);
            json.put("pageList", pageList);
            json.put("curPage", Integer.valueOf(curPage));
        } else {
            String jsonString = RequestUtils.getRequestJsonString(request, Config.getCharset());
            tb_tag tag = (tb_tag)JSONObject.toBean(JSONObject.fromObject(jsonString), tb_tag.class);
            input = tag.getTag_id();
            realkaoqingsManagementList = this.attendanceService.searchRealAttendance(input);
            if (realkaoqingsManagementList.size() > 0) {
                json.put("result", realkaoqingsManagementList.get(0));
            } else {
                json.put("result", "null");
            }
        }
 
        return json.toString();
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/realAttendance_office.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public String realAttendance_office(HttpServletRequest request) {
        String realkaoqingsManagementList = this.attendanceService.getPeople();
        JSONObject json = new JSONObject();
        json.put("people", realkaoqingsManagementList);
        return json.toString();
    }
 
    @RequestMapping(value = {"/historicalAttendance.do"}, method = {RequestMethod.POST, RequestMethod.GET}
    )
    public String historicalAttendance(HttpServletRequest request) {
        String toPage = "forward:/hxzk/attendance/historyDetail.jsp";
        List<vo_kaoqin_p> historicalkaoqingsManagementList = this.attendanceService.getHistoricalAttendance(1);
        int count = this.attendanceService.getHistoricalAttendanceCount();
        int curPage = 1;
        request.setAttribute("historicalkaoqingsManagementList", historicalkaoqingsManagementList);
        int minPage = PageUtil.getMinPage(count);
        request.setAttribute("pageList", PageUtil.getPage(minPage));
        request.setAttribute("curPage", Integer.valueOf(curPage));
        return toPage;
    }
 
    @RequestMapping(
            value = {"/historicalAttendancea.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    @ResponseBody
    public List<vo_kaoqin_p> historicalAttendancea(HttpServletRequest request) {
        List<vo_kaoqin_p> historicalkaoqingsManagementList = this.attendanceService.getHistoricalAttendance();
        return historicalkaoqingsManagementList;
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/historicalAttendance_search.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public String historicalAttendance_search(HttpServletRequest request) {
        String input = request.getParameter("input");
        int curPage = 1;
        List<Integer> pageList = new ArrayList();
        List<vo_kaoqin_p> historicalkaoqingsManagementList = this.attendanceService.searchHistoricalAttendance(input);
        pageList.add(1);
        JSONObject json = new JSONObject();
        json.put("dataList", historicalkaoqingsManagementList);
        json.put("pageList", pageList);
        json.put("curPage", Integer.valueOf(curPage));
        return json.toString();
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/historicalAttendance_page.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public String historicalAttendance_page(HttpServletRequest request) {
        String pageStr = request.getParameter("page");
        String curPageStr = request.getParameter("curPage");
        int count = this.attendanceService.getHistoricalAttendanceCount();
        int minPage = PageUtil.getMinPage(count);
        int curPage = Integer.parseInt(curPageStr);
        int page = 1;
        if ("pre".equals(pageStr)) {
            if (curPage > 1) {
                page = curPage - 1;
            }
        } else if ("next".equals(pageStr)) {
            if (curPage < minPage) {
                page = curPage + 1;
            }
        } else {
            page = Integer.parseInt(pageStr);
        }
 
        List<vo_kaoqin_p> historicalkaoqingsManagementList = this.attendanceService.getHistoricalAttendance(page);
        List<Integer> pageList = PageUtil.getPage(PageUtil.getLocPage(page, curPage), page, minPage);
        JSONObject json = new JSONObject();
        json.put("dataList", historicalkaoqingsManagementList);
        json.put("pageList", pageList);
        json.put("curPage", page);
        return json.toString();
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/historicalAttendance_delete.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public void historicalAttendance_delete(HttpServletRequest request) {
        String checkValStr = request.getParameter("checkVal");
        checkValStr = checkValStr.replaceAll("\"", "");
        String[] checkVal = checkValStr.split(",");
        this.attendanceService.historicalAttendance_delete(checkVal);
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/historicalAttendance_deleteAll.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public void historicalAttendance_deleteAll(HttpServletRequest request) {
        this.attendanceService.historicalAttendance_deleteAll();
    }
 
    public static List<Object[]> objectToArray(List<vo_kaoqin_p> historicalkaoqingsManagementList) {
        List<Object[]> reList = new ArrayList();
 
        for(int i = 0; i < historicalkaoqingsManagementList.size(); ++i) {
            List<String> words = new ArrayList();
            vo_kaoqin_p kaoqin = (vo_kaoqin_p)historicalkaoqingsManagementList.get(i);
            words.add(String.valueOf(kaoqin.getId()));
            words.add(kaoqin.getArea());
            words.add(kaoqin.getName());
            words.add(kaoqin.getBumen());
            words.add(kaoqin.getTagid());
            words.add(kaoqin.getPower());
            words.add(kaoqin.getIntime());
            words.add(kaoqin.getOuttime());
            words.add(kaoqin.getAlltime());
            words.add(kaoqin.getBeizhu());
            String[] array = (String[])words.toArray(new String[0]);
            reList.add(array);
        }
 
        return reList;
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/historyDetail_export.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public String historyDetail_export(HttpServletRequest request, HttpServletResponse response) {
        String toPage = "forward:/hxzk/attendance/historyDetail.jsp";
        List<vo_kaoqin_p> historicalkaoqingsManagementList = this.attendanceService.getHistoricalAttendance();
        String[] rowName = new String[]{"序号", "区域", "名称", "部门", "标签ID", "标签电量", "进入时间", "出去时间", "停留时长", "备注"};
        List<Object[]> dataList = objectToArray(historicalkaoqingsManagementList);
        ExcelUtils excel = new ExcelUtils("历史考勤", rowName, dataList);
 
        try {
            String fileName = "Excel-" + String.valueOf(System.currentTimeMillis()).substring(4, 13) + ".xls";
            String headStr = "attachment; filename=\"" + fileName + "\"";
            response.setContentType("APPLICATION/OCTET-STREAM");
            response.setHeader("Content-Disposition", headStr);
            OutputStream out = response.getOutputStream();
            excel.export(out);
            out.flush();
            out.close();
        } catch (Exception var11) {
            var11.printStackTrace();
        }
 
        return toPage;
    }
 
    @RequestMapping(
            value = {"/realAttendance_bw_add.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public void label_bw_power(HttpServletRequest request) throws IOException {
        String jsonString = RequestUtils.getRequestJsonString(request, Config.getCharset());
        tb_realkaoqing realkaoqing = (tb_realkaoqing)JSONObject.toBean(JSONObject.fromObject(jsonString), tb_realkaoqing.class);
        this.attendanceService.realAttendance_add(realkaoqing);
    }
 
    @RequestMapping(
            value = {"toxinlv.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public String tolixian(HttpServletRequest request) {
        String toPage = "forward:/hxzk/attendance/xinlvManagement.jsp";
        List<tb_heart_record> mess = this.attendanceService.findxinlv(1);
        request.setAttribute("dataList", mess);
        int curPage = 1;
        int count = this.attendanceService.getxinlvManagementCount();
        int minPage = PageUtil.getMinPage(count);
        request.setAttribute("pageList", PageUtil.getPage(minPage));
        request.setAttribute("curPage", Integer.valueOf(curPage));
        return toPage;
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/xinlv_delete.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public void xinlv_delete(HttpServletRequest request) {
        String checkValStr = request.getParameter("checkVal");
        checkValStr = checkValStr.replaceAll("\"", "");
        String[] checkVal = checkValStr.split(",");
        this.attendanceService.xinlv_delete(checkVal);
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/xinlv_deletea.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public void xinlv_deletea(HttpServletRequest request) {
        this.attendanceService.xinlv_deletea();
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/xinlv_search.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public String xinlv_search(HttpServletRequest request) throws IOException {
        JSONObject json = new JSONObject();
        String input = request.getParameter("input");
        List warningSummaryList;
        if (!"".equals(input) && input != null) {
            int curPage = 1;
            List<Integer> pageList = new ArrayList();
            warningSummaryList = this.attendanceService.findxinlv3(input);
            pageList.add(1);
            json.put("dataList", warningSummaryList);
            json.put("pageList", pageList);
            json.put("curPage", Integer.valueOf(curPage));
        } else {
            String jsonString = RequestUtils.getRequestJsonString(request, Config.getCharset());
            tb_tag tag = (tb_tag)JSONObject.toBean(JSONObject.fromObject(jsonString), tb_tag.class);
            input = tag.getTag_id();
            warningSummaryList = this.attendanceService.findxinlv3(input);
            if (warningSummaryList.size() > 0) {
                json.put("result", warningSummaryList.get(0));
            } else {
                json.put("result", "null");
            }
        }
 
        return json.toString();
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/xinlv_page.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public String xinlv_page(HttpServletRequest request) {
        String pageStr = request.getParameter("page");
        String curPageStr = request.getParameter("curPage");
        int count = this.attendanceService.getxinlvManagementCount();
        int minPage = PageUtil.getMinPage(count);
        int curPage = Integer.parseInt(curPageStr);
        int page = 1;
        if ("pre".equals(pageStr)) {
            if (curPage > 1) {
                page = curPage - 1;
            }
        } else if ("next".equals(pageStr)) {
            if (curPage < minPage) {
                page = curPage + 1;
            }
        } else {
            page = Integer.parseInt(pageStr);
        }
 
        List<tb_heart_record> labelManagementList = this.attendanceService.findxinlv(page);
        List<Integer> pageList = PageUtil.getPage(PageUtil.getLocPage(page, curPage), page, minPage);
        JSONObject json = new JSONObject();
        json.put("dataList", labelManagementList);
        json.put("pageList", pageList);
        json.put("curPage", page);
        return json.toString();
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/xinlv_export.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public String xinlv_export(HttpServletRequest request, HttpServletResponse response) {
        String toPage = "forward:/hxzk/attendance/xinlvManagement.jsp";
        List<tb_heart_record> tb_warningList = this.attendanceService.findxinlv2();
        String[] rowName = new String[]{"序号", "标签ID", "姓名", "心跳", "正常心率值", "心率状态", "记录时间"};
        List<Object[]> dataList = objectToArray_warningSummary(tb_warningList);
        ExcelUtils excel = new ExcelUtils("心率记录", rowName, dataList);
 
        try {
            String fileName = "Excel-" + String.valueOf(System.currentTimeMillis()).substring(4, 13) + ".xls";
            String headStr = "attachment; filename=\"" + fileName + "\"";
            response.setContentType("APPLICATION/OCTET-STREAM");
            response.setHeader("Content-Disposition", headStr);
            OutputStream out = response.getOutputStream();
            excel.export(out);
            out.flush();
            out.close();
        } catch (Exception var11) {
            var11.printStackTrace();
        }
 
        return toPage;
    }
 
    public static List<Object[]> objectToArray_warningSummary(List<tb_heart_record> tb_warningList) {
        List<Object[]> reList = new ArrayList();
 
        for(int i = 0; i < tb_warningList.size(); ++i) {
            List<String> words = new ArrayList();
            tb_heart_record warn = (tb_heart_record)tb_warningList.get(i);
            words.add(warn.getId() + "");
            words.add(warn.getTagid());
            words.add(warn.getName());
            words.add(warn.getHeart());
            words.add(warn.getOkheart());
            words.add(warn.getState());
            words.add(warn.getTime());
            String[] array = (String[])words.toArray(new String[0]);
            reList.add(array);
        }
 
        return reList;
    }
 
    @RequestMapping(
            value = {"toco.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public String toco(HttpServletRequest request) {
        String toPage = "forward:/hxzk/attendance/coManagement.jsp";
        List<tb_cojilu> mess = this.attendanceService.findco(1);
        request.setAttribute("dataList", mess);
        int curPage = 1;
        int count = this.attendanceService.getcoManagementCount();
        int minPage = PageUtil.getMinPage(count);
        request.setAttribute("pageList", PageUtil.getPage(minPage));
        request.setAttribute("curPage", Integer.valueOf(curPage));
        return toPage;
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/co_delete.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public void co_delete(HttpServletRequest request) {
        String checkValStr = request.getParameter("checkVal");
        checkValStr = checkValStr.replaceAll("\"", "");
        String[] checkVal = checkValStr.split(",");
        this.attendanceService.co_delete(checkVal);
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/co_deletea.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public void co_deletea(HttpServletRequest request) {
        this.attendanceService.co_deletea();
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/co_search.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public String co_search(HttpServletRequest request) throws IOException {
        JSONObject json = new JSONObject();
        String input = request.getParameter("input");
        List warningSummaryList;
        if (!"".equals(input) && input != null) {
            int curPage = 1;
            List<Integer> pageList = new ArrayList();
            warningSummaryList = this.attendanceService.findco3(input);
            pageList.add(1);
            json.put("dataList", warningSummaryList);
            json.put("pageList", pageList);
            json.put("curPage", Integer.valueOf(curPage));
        } else {
            String jsonString = RequestUtils.getRequestJsonString(request, Config.getCharset());
            tb_tag tag = (tb_tag)JSONObject.toBean(JSONObject.fromObject(jsonString), tb_tag.class);
            input = tag.getTag_id();
            warningSummaryList = this.attendanceService.findco3(input);
            if (warningSummaryList.size() > 0) {
                json.put("result", warningSummaryList.get(0));
            } else {
                json.put("result", "null");
            }
        }
 
        return json.toString();
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/co_page.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public String co_page(HttpServletRequest request) {
        String pageStr = request.getParameter("page");
        String curPageStr = request.getParameter("curPage");
        int count = this.attendanceService.getcoManagementCount();
        int minPage = PageUtil.getMinPage(count);
        int curPage = Integer.parseInt(curPageStr);
        int page = 1;
        if ("pre".equals(pageStr)) {
            if (curPage > 1) {
                page = curPage - 1;
            }
        } else if ("next".equals(pageStr)) {
            if (curPage < minPage) {
                page = curPage + 1;
            }
        } else {
            page = Integer.parseInt(pageStr);
        }
 
        List<tb_cojilu> labelManagementList = this.attendanceService.findco(page);
        List<Integer> pageList = PageUtil.getPage(PageUtil.getLocPage(page, curPage), page, minPage);
        JSONObject json = new JSONObject();
        json.put("dataList", labelManagementList);
        json.put("pageList", pageList);
        json.put("curPage", page);
        return json.toString();
    }
 
    @ResponseBody
    @RequestMapping(
            value = {"/co_export.do"},
            method = {RequestMethod.POST, RequestMethod.GET}
    )
    public String co_export(HttpServletRequest request, HttpServletResponse response) {
        String toPage = "forward:/hxzk/attendance/coManagement.jsp";
        List<tb_cojilu> tb_warningList = this.attendanceService.findco2();
        String[] rowName = new String[]{"序号", "标签ID", "姓名", "浓度", "正常范围", "状态", "位置坐标", "时间"};
        List<Object[]> dataList = objectToArray_warningSummary2(tb_warningList);
        ExcelUtils excel = new ExcelUtils("一氧化碳", rowName, dataList);
 
        try {
            String fileName = "Excel-" + String.valueOf(System.currentTimeMillis()).substring(4, 13) + ".xls";
            String headStr = "attachment; filename=\"" + fileName + "\"";
            response.setContentType("APPLICATION/OCTET-STREAM");
            response.setHeader("Content-Disposition", headStr);
            OutputStream out = response.getOutputStream();
            excel.export(out);
            out.flush();
            out.close();
        } catch (Exception var11) {
            var11.printStackTrace();
        }
 
        return toPage;
    }
 
    public static List<Object[]> objectToArray_warningSummary2(List<tb_cojilu> tb_warningList) {
        List<Object[]> reList = new ArrayList();
 
        for(int i = 0; i < tb_warningList.size(); ++i) {
            List<String> words = new ArrayList();
            tb_cojilu warn = (tb_cojilu)tb_warningList.get(i);
            words.add(warn.getId() + "");
            words.add(warn.getTagid());
            words.add(warn.getName());
            words.add(warn.getNongdu());
            words.add(warn.getOknongdu());
            words.add(warn.getState());
            words.add(warn.getXypos());
            words.add(warn.getTime());
            String[] array = (String[])words.toArray(new String[0]);
            reList.add(array);
        }
 
        return reList;
    }
}