Browse Source

echarts导出图片+表格

develop
lau572 4 months ago
parent
commit
e019c4a303
  1. 69
      ruoyi-common/src/main/java/com/ruoyi/common/utils/poi/ExcelUtil.java
  2. 69
      zc-business/src/main/java/com/zc/business/controller/DCPerceivedEventsWarningController.java
  3. 41
      zc-business/src/main/java/com/zc/business/controller/DcPublishManageController.java
  4. 178
      zc-business/src/main/java/com/zc/business/controller/DcTrafficIncidentsController.java
  5. 129
      zc-business/src/main/java/com/zc/business/controller/DcTrafficStatisticsController.java
  6. 1
      zc-business/src/main/java/com/zc/business/domain/DcPublishManage.java
  7. 9
      zc-business/src/main/java/com/zc/business/domain/DcWarning.java
  8. 62
      zc-business/src/main/java/com/zc/business/domain/export/EventTimeProportion.java

69
ruoyi-common/src/main/java/com/ruoyi/common/utils/poi/ExcelUtil.java

@ -30,26 +30,7 @@ import org.apache.poi.hssf.usermodel.HSSFShape;
import org.apache.poi.hssf.usermodel.HSSFSheet; import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ooxml.POIXMLDocumentPart; import org.apache.poi.ooxml.POIXMLDocumentPart;
import org.apache.poi.ss.usermodel.BorderStyle; import org.apache.poi.ss.usermodel.*;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.CellType;
import org.apache.poi.ss.usermodel.ClientAnchor;
import org.apache.poi.ss.usermodel.DataValidation;
import org.apache.poi.ss.usermodel.DataValidationConstraint;
import org.apache.poi.ss.usermodel.DataValidationHelper;
import org.apache.poi.ss.usermodel.DateUtil;
import org.apache.poi.ss.usermodel.Drawing;
import org.apache.poi.ss.usermodel.FillPatternType;
import org.apache.poi.ss.usermodel.Font;
import org.apache.poi.ss.usermodel.HorizontalAlignment;
import org.apache.poi.ss.usermodel.IndexedColors;
import org.apache.poi.ss.usermodel.PictureData;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.VerticalAlignment;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.ss.usermodel.WorkbookFactory;
import org.apache.poi.ss.util.CellRangeAddress; import org.apache.poi.ss.util.CellRangeAddress;
import org.apache.poi.ss.util.CellRangeAddressList; import org.apache.poi.ss.util.CellRangeAddressList;
import org.apache.poi.util.IOUtils; import org.apache.poi.util.IOUtils;
@ -441,6 +422,9 @@ public class ExcelUtil<T>
{ {
exportExcel(response, list, sheetName, StringUtils.EMPTY); exportExcel(response, list, sheetName, StringUtils.EMPTY);
} }
public void exportImgExcel(HttpServletResponse response, List<T> list, String sheetName,byte[] imageBytes,int width,int height) throws IOException {
exportImgExcel(response, list, sheetName, imageBytes,width,height,StringUtils.EMPTY);
}
/** /**
* 对list数据源将其里面的数据导入到excel表单 * 对list数据源将其里面的数据导入到excel表单
@ -458,6 +442,12 @@ public class ExcelUtil<T>
this.init(list, sheetName, title, Type.EXPORT); this.init(list, sheetName, title, Type.EXPORT);
exportExcel(response); exportExcel(response);
} }
public void exportImgExcel(HttpServletResponse response, List<T> list, String sheetName,byte[] imageBytes, int width, int height, String title) throws IOException {
response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
response.setCharacterEncoding("utf-8");
this.init(list, sheetName, title, Type.EXPORT);
exportImgExcel(response,imageBytes,width,height);
}
/** /**
* 对list数据源将其里面的数据导入到excel表单 * 对list数据源将其里面的数据导入到excel表单
@ -530,6 +520,23 @@ public class ExcelUtil<T>
IOUtils.closeQuietly(wb); IOUtils.closeQuietly(wb);
} }
} }
public void exportImgExcel(HttpServletResponse response,byte[] imageBytes,int width,int height)
{
try
{
writeSheet();
insertImage(imageBytes,width,height);
wb.write(response.getOutputStream());
}
catch (Exception e)
{
log.error("导出Excel异常{}", e.getMessage());
}
finally
{
IOUtils.closeQuietly(wb);
}
}
/** /**
* 对list数据源将其里面的数据导入到excel表单 * 对list数据源将其里面的数据导入到excel表单
@ -1429,4 +1436,26 @@ public class ExcelUtil<T>
} }
return str; return str;
} }
/**
* 将图片插入到Excel工作表中
* @param imageBytes 图片的字节数组
* @param width 图片宽度以列宽为单位
* @param height 图片高度以行高为单位
*/
public void insertImage(byte[] imageBytes, int width, int height) throws IOException {
// 添加图片到工作簿并获取图片索引
int pictureIdx = this.wb.addPicture(imageBytes, Workbook.PICTURE_TYPE_JPEG);
// 创建绘图对象
Drawing<?> drawing = this.sheet.createDrawingPatriarch();
// 设置图片位置
ClientAnchor anchor = drawing.createAnchor(0, 0, 0, 0, 0, this.list.size()+2, width, this.list.size() + 2 + height);
// ClientAnchor anchor = drawing.createAnchor(0, 0, 0, 0, 0, 5, 4, 3);
Picture pict = drawing.createPicture(anchor, pictureIdx);
// 调整图片大小
// pict.resize(); // 默认是100%原始大小
}
} }

69
zc-business/src/main/java/com/zc/business/controller/DCPerceivedEventsWarningController.java

@ -14,6 +14,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.*; import java.util.*;
import java.util.stream.Collectors; import java.util.stream.Collectors;
@ -364,8 +365,8 @@ public class DCPerceivedEventsWarningController extends BaseController {
* @return com.ruoyi.common.core.domain.AjaxResult * @return com.ruoyi.common.core.domain.AjaxResult
*/ */
@ApiOperation(value = "导出感知事件多发时段",tags = {"ECharts导出"}) @ApiOperation(value = "导出感知事件多发时段",tags = {"ECharts导出"})
@GetMapping("/exportManyTimesInterval") @PostMapping("/exportManyTimesInterval")
public void exportManyTimesInterval(HttpServletResponse response,DcWarning dcWarning){ public void exportManyTimesInterval(HttpServletResponse response,@RequestBody DcWarning dcWarning) throws IOException {
if (dcWarning==null||StringUtils.isBlank(dcWarning.getType())||dcWarning.getCurrently()==null||dcWarning.getLastYear()==null if (dcWarning==null||StringUtils.isBlank(dcWarning.getType())||dcWarning.getCurrently()==null||dcWarning.getLastYear()==null
||StringUtils.isBlank(dcWarning.getStartStakeMark())||StringUtils.isBlank(dcWarning.getEndStakeMark()) ||StringUtils.isBlank(dcWarning.getStartStakeMark())||StringUtils.isBlank(dcWarning.getEndStakeMark())
||StringUtils.isBlank(dcWarning.getDirection())){ ||StringUtils.isBlank(dcWarning.getDirection())){
@ -385,7 +386,15 @@ public class DCPerceivedEventsWarningController extends BaseController {
} }
} }
ExcelUtil<ManyTimesInterval> util = new ExcelUtil<>(ManyTimesInterval.class); ExcelUtil<ManyTimesInterval> util = new ExcelUtil<>(ManyTimesInterval.class);
util.exportExcel(response, list, UniversalEnum.PERCEIVED_EVENT_OCCURRENCE_PERIOD.getValue());
int commaIndex = dcWarning.getFileUrl().indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = dcWarning.getFileUrl().substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
util.exportImgExcel(response, list, UniversalEnum.PERCEIVED_EVENT_OCCURRENCE_PERIOD.getValue(),imageBytes,6,12);
} }
@ -400,8 +409,8 @@ public class DCPerceivedEventsWarningController extends BaseController {
return AjaxResult.success(perceivedEventsWarningService.newSelectWarningType(dcWarning)); return AjaxResult.success(perceivedEventsWarningService.newSelectWarningType(dcWarning));
} }
@ApiOperation(value = "导出感知事件类型分析",tags = {"ECharts导出"}) @ApiOperation(value = "导出感知事件类型分析",tags = {"ECharts导出"})
@GetMapping("/exportSelectWarningType") @PostMapping("/exportSelectWarningType")
public void exportSelectWarningType(HttpServletResponse response,DcWarning dcWarning){ public void exportSelectWarningType(HttpServletResponse response,@RequestBody DcWarning dcWarning) throws IOException {
if (dcWarning==null||StringUtils.isBlank(dcWarning.getType())||dcWarning.getCurrently()==null||dcWarning.getLastYear()==null if (dcWarning==null||StringUtils.isBlank(dcWarning.getType())||dcWarning.getCurrently()==null||dcWarning.getLastYear()==null
||StringUtils.isBlank(dcWarning.getStartStakeMark())||StringUtils.isBlank(dcWarning.getEndStakeMark()) ||StringUtils.isBlank(dcWarning.getStartStakeMark())||StringUtils.isBlank(dcWarning.getEndStakeMark())
||StringUtils.isBlank(dcWarning.getDirection())){ ||StringUtils.isBlank(dcWarning.getDirection())){
@ -425,7 +434,14 @@ public class DCPerceivedEventsWarningController extends BaseController {
} }
} }
ExcelUtil<SelectWarningType> util = new ExcelUtil<>(SelectWarningType.class); ExcelUtil<SelectWarningType> util = new ExcelUtil<>(SelectWarningType.class);
util.exportExcel(response, list, UniversalEnum.PERCEPTUAL_EVENT_TYPE_ANALYSIS.getValue());
int commaIndex = dcWarning.getFileUrl().indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = dcWarning.getFileUrl().substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
util.exportImgExcel(response, list, UniversalEnum.PERCEPTUAL_EVENT_TYPE_ANALYSIS.getValue(),imageBytes,3,15);
} }
//新-感知事件桩号范围内事件分析 //新-感知事件桩号范围内事件分析
@ -440,8 +456,8 @@ public class DCPerceivedEventsWarningController extends BaseController {
} }
@ApiOperation(value = "导出桩号范围内事件分析",tags = {"ECharts导出"}) @ApiOperation(value = "导出桩号范围内事件分析",tags = {"ECharts导出"})
@GetMapping("/exportSelectSection") @PostMapping("/exportSelectSection")
public void exportSelectSection(HttpServletResponse response,DcWarning dcWarning){ public void exportSelectSection(HttpServletResponse response,@RequestBody DcWarning dcWarning) throws IOException {
if (dcWarning==null||StringUtils.isBlank(dcWarning.getType())||dcWarning.getCurrently()==null||dcWarning.getLastYear()==null if (dcWarning==null||StringUtils.isBlank(dcWarning.getType())||dcWarning.getCurrently()==null||dcWarning.getLastYear()==null
||StringUtils.isBlank(dcWarning.getStartStakeMark())||StringUtils.isBlank(dcWarning.getEndStakeMark()) ||StringUtils.isBlank(dcWarning.getStartStakeMark())||StringUtils.isBlank(dcWarning.getEndStakeMark())
||StringUtils.isBlank(dcWarning.getDirection())){ ||StringUtils.isBlank(dcWarning.getDirection())){
@ -475,7 +491,15 @@ public class DCPerceivedEventsWarningController extends BaseController {
} }
ExcelUtil<SelectSection> util = new ExcelUtil<>(SelectSection.class); ExcelUtil<SelectSection> util = new ExcelUtil<>(SelectSection.class);
util.exportExcel(response, list, UniversalEnum.EVENT_ANALYSIS_WITHIN_THE_RANGE_OF_STAKE_NUMBER.getValue());
int commaIndex = dcWarning.getFileUrl().indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = dcWarning.getFileUrl().substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
util.exportImgExcel(response, list, UniversalEnum.EVENT_ANALYSIS_WITHIN_THE_RANGE_OF_STAKE_NUMBER.getValue(),imageBytes,6,12);
} }
//新-感知事件路段处置类型分析 //新-感知事件路段处置类型分析
@ -487,8 +511,8 @@ public class DCPerceivedEventsWarningController extends BaseController {
return AjaxResult.success(perceivedEventsWarningService.newSelectStateType(dcWarning)); return AjaxResult.success(perceivedEventsWarningService.newSelectStateType(dcWarning));
} }
@ApiOperation(value = "导出感知事件路段分析",tags = {"ECharts导出"}) @ApiOperation(value = "导出感知事件路段分析",tags = {"ECharts导出"})
@GetMapping("/exportSelectStateType") @PostMapping("/exportSelectStateType")
public void exportSelectStateType(HttpServletResponse response, DcWarning dcWarning){ public void exportSelectStateType(HttpServletResponse response,@RequestBody DcWarning dcWarning) throws IOException {
if (dcWarning==null||dcWarning.getCurrently()==null||dcWarning.getLastYear()==null){ if (dcWarning==null||dcWarning.getCurrently()==null||dcWarning.getLastYear()==null){
return; return;
} }
@ -543,8 +567,15 @@ public class DCPerceivedEventsWarningController extends BaseController {
list.add(selectStateType); list.add(selectStateType);
} }
int commaIndex = dcWarning.getFileUrl().indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = dcWarning.getFileUrl().substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
ExcelUtil<SelectStateType> util = new ExcelUtil<>(SelectStateType.class); ExcelUtil<SelectStateType> util = new ExcelUtil<>(SelectStateType.class);
util.exportExcel(response, list, UniversalEnum.PERCEPTUAL_EVENT_SECTION_ANALYSIS.getValue()); util.exportImgExcel(response, list, UniversalEnum.PERCEPTUAL_EVENT_SECTION_ANALYSIS.getValue(),imageBytes,7,14);
} }
//查询感知数量按照路段数量进行排名 //查询感知数量按照路段数量进行排名
@ -554,8 +585,8 @@ public class DCPerceivedEventsWarningController extends BaseController {
} }
@ApiOperation(value = "导出感知事件路段排名",tags = {"ECharts导出"}) @ApiOperation(value = "导出感知事件路段排名",tags = {"ECharts导出"})
@GetMapping("/exportSectionPerceivedList") @PostMapping("/exportSectionPerceivedList")
public void exportSectionPerceivedList(HttpServletResponse response){ public void exportSectionPerceivedList(HttpServletResponse response,@RequestBody Map<String,String> params) throws IOException {
List<HashMap<String,Object>> dataList = perceivedEventsWarningService.selectSectionPerceivedEventsList(); List<HashMap<String,Object>> dataList = perceivedEventsWarningService.selectSectionPerceivedEventsList();
List<SectionPerceivedList> list = new ArrayList<>(); List<SectionPerceivedList> list = new ArrayList<>();
if (dataList != null && dataList.size() > UniversalEnum.ZERO.getNumber()){ if (dataList != null && dataList.size() > UniversalEnum.ZERO.getNumber()){
@ -568,6 +599,14 @@ public class DCPerceivedEventsWarningController extends BaseController {
} }
} }
ExcelUtil<SectionPerceivedList> util = new ExcelUtil<>(SectionPerceivedList.class); ExcelUtil<SectionPerceivedList> util = new ExcelUtil<>(SectionPerceivedList.class);
util.exportExcel(response, list, UniversalEnum.PERCEIVED_EVENT_ROAD_RANK.getValue());
String fileUrl = params.get("fileUrl");
int commaIndex = fileUrl.indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = fileUrl.substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
util.exportImgExcel(response, list, UniversalEnum.PERCEIVED_EVENT_ROAD_RANK.getValue(),imageBytes,3,22);
} }
} }

41
zc-business/src/main/java/com/zc/business/controller/DcPublishManageController.java

@ -21,6 +21,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.UnsupportedEncodingException; import java.io.UnsupportedEncodingException;
import java.net.URLEncoder; import java.net.URLEncoder;
import java.nio.charset.StandardCharsets; import java.nio.charset.StandardCharsets;
@ -185,9 +186,9 @@ public class DcPublishManageController extends BaseController
} }
@ApiOperation(value = "导出今日发布趋势分析",tags = {"ECharts导出"}) @ApiOperation(value = "导出今日发布趋势分析",tags = {"ECharts导出"})
@GetMapping("/exportTrendsPublishManage") @PostMapping("/exportTrendsPublishManage")
public void exportTrendsPublishManage(HttpServletResponse response){ public void exportTrendsPublishManage(HttpServletResponse response,@RequestBody Map<String,String> params) throws IOException {
String fileUrl = params.get("fileUrl");
List<HashMap<String,Object>> data = dcPublishManageService.releaseTrendsPublishManage(); List<HashMap<String,Object>> data = dcPublishManageService.releaseTrendsPublishManage();
List<TrendsPublishManage> list = new ArrayList<>(); List<TrendsPublishManage> list = new ArrayList<>();
if (data != null && data.size() > 0) { if (data != null && data.size() > 0) {
@ -216,7 +217,15 @@ public class DcPublishManageController extends BaseController
} }
ExcelUtil<TrendsPublishManage> util = new ExcelUtil<>(TrendsPublishManage.class); ExcelUtil<TrendsPublishManage> util = new ExcelUtil<>(TrendsPublishManage.class);
util.exportExcel(response, list, "今日发布趋势分析");
int commaIndex = fileUrl.indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = fileUrl.substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
util.exportImgExcel(response, list, "今日发布趋势分析",imageBytes,7,12);
} }
//统计服务,月发布渠道趋势分析(只统计成功的) //统计服务,月发布渠道趋势分析(只统计成功的)
@ -230,8 +239,8 @@ public class DcPublishManageController extends BaseController
} }
@ApiOperation(value = "导出月发布渠道趋势分析",tags = {"ECharts导出"}) @ApiOperation(value = "导出月发布渠道趋势分析",tags = {"ECharts导出"})
@GetMapping("/exportMonthTrendsPublishManage") @PostMapping("/exportMonthTrendsPublishManage")
public void exportMonthTrendsPublishManage(HttpServletResponse response,DcPublishManage dcPublishManage){ public void exportMonthTrendsPublishManage(HttpServletResponse response,@RequestBody DcPublishManage dcPublishManage) throws IOException {
List<String> dates = new ArrayList<>(); List<String> dates = new ArrayList<>();
LocalDate currentDate = LocalDate.now(); LocalDate currentDate = LocalDate.now();
@ -277,7 +286,13 @@ public class DcPublishManageController extends BaseController
} }
ExcelUtil<TrendsPublishManage> util = new ExcelUtil<>(TrendsPublishManage.class); ExcelUtil<TrendsPublishManage> util = new ExcelUtil<>(TrendsPublishManage.class);
util.exportExcel(response, list, "月发布渠道趋势分析"); int commaIndex = dcPublishManage.getFileUrl().indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = dcPublishManage.getFileUrl().substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
util.exportImgExcel(response, list, "月发布渠道趋势分析",imageBytes,7,12);
} }
//统计服务,事件类型对应的发布渠道发布的数量(只统计成功的) //统计服务,事件类型对应的发布渠道发布的数量(只统计成功的)
@ -296,8 +311,8 @@ public class DcPublishManageController extends BaseController
return AjaxResult.success(dcPublishManageService.eventTypePublishManageMonth(dcPublishManage)); return AjaxResult.success(dcPublishManageService.eventTypePublishManageMonth(dcPublishManage));
} }
@ApiOperation(value = "导出各事件发布渠道分析",tags = {"ECharts导出"}) @ApiOperation(value = "导出各事件发布渠道分析",tags = {"ECharts导出"})
@GetMapping("/exportEventTypePublishManageMonth") @PostMapping("/exportEventTypePublishManageMonth")
public void exportEventTypePublishManageMonth(HttpServletResponse response,DcPublishManage dcPublishManage){ public void exportEventTypePublishManageMonth(HttpServletResponse response,@RequestBody DcPublishManage dcPublishManage) throws IOException {
List<HashMap<String,Object>> data = dcPublishManageService.eventTypePublishManageMonth(dcPublishManage); List<HashMap<String,Object>> data = dcPublishManageService.eventTypePublishManageMonth(dcPublishManage);
List<EventTypePublishManageMonth> list = new ArrayList<>(); List<EventTypePublishManageMonth> list = new ArrayList<>();
@ -324,7 +339,13 @@ public class DcPublishManageController extends BaseController
} }
ExcelUtil<EventTypePublishManageMonth> util = new ExcelUtil<>(EventTypePublishManageMonth.class); ExcelUtil<EventTypePublishManageMonth> util = new ExcelUtil<>(EventTypePublishManageMonth.class);
util.exportExcel(response, list, "各事件发布渠道分析"); int commaIndex = dcPublishManage.getFileUrl().indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = dcPublishManage.getFileUrl().substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
util.exportImgExcel(response, list, "各事件发布渠道分析",imageBytes,7,12);
} }
/** /**

178
zc-business/src/main/java/com/zc/business/controller/DcTrafficIncidentsController.java

@ -1,6 +1,7 @@
package com.zc.business.controller; package com.zc.business.controller;
import com.ruoyi.common.core.domain.AjaxResult; import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.utils.StakeMarkUtils;
import com.ruoyi.common.utils.poi.ExcelUtil; import com.ruoyi.common.utils.poi.ExcelUtil;
import com.zc.business.domain.DcEvent; import com.zc.business.domain.DcEvent;
import com.zc.business.domain.DcEventListQuery; import com.zc.business.domain.DcEventListQuery;
@ -24,11 +25,7 @@ import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import java.io.IOException; import java.io.IOException;
import java.text.SimpleDateFormat; import java.text.SimpleDateFormat;
import java.util.ArrayList; import java.util.*;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors; import java.util.stream.Collectors;
/** /**
@ -183,8 +180,9 @@ public class DcTrafficIncidentsController {
} }
@ApiOperation(value="导出今日事件趋势",tags = {"ECharts导出"}) @ApiOperation(value="导出今日事件趋势",tags = {"ECharts导出"})
@GetMapping("/exportGetEventTrend") @PostMapping("/exportGetEventTrend")
public void exportGetEventTrend(HttpServletResponse response){ public void exportGetEventTrend(HttpServletResponse response,@RequestBody Map<String,String> params) throws IOException {
String fileUrl = params.get("fileUrl");
AjaxResult ajaxResult = trafficIncidentsService.getEventTrend(); AjaxResult ajaxResult = trafficIncidentsService.getEventTrend();
List<EventTrend> list = new ArrayList<>(); List<EventTrend> list = new ArrayList<>();
if (ajaxResult.get("code").equals(UniversalEnum.TWO_HUNDRED.getNumber())) { if (ajaxResult.get("code").equals(UniversalEnum.TWO_HUNDRED.getNumber())) {
@ -201,7 +199,13 @@ public class DcTrafficIncidentsController {
} }
ExcelUtil<EventTrend> util = new ExcelUtil<>(EventTrend.class); ExcelUtil<EventTrend> util = new ExcelUtil<>(EventTrend.class);
util.exportExcel(response, list, "今日事件趋势"); int commaIndex = fileUrl.indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = fileUrl.substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
util.exportImgExcel(response, list, "今日事件趋势",imageBytes,7,14);
} }
/** /**
* @Description 路网管控-事件管控分析-事故车型分析 * @Description 路网管控-事件管控分析-事故车型分析
@ -609,11 +613,12 @@ public class DcTrafficIncidentsController {
} }
@ApiOperation(value="导出事故多发路段分析",tags = {"ECharts导出"}) @ApiOperation(value="导出事故多发路段分析",tags = {"ECharts导出"})
@GetMapping("/exportSelectRoadSectionAnalysis") @PostMapping("/exportSelectRoadSectionAnalysis")
public void exportSelectRoadSectionAnalysis(HttpServletResponse response, public void exportSelectRoadSectionAnalysis(HttpServletResponse response, @RequestBody Map<String,String> params) throws IOException {
@ApiParam(value="方向", name="direction", required=true) @RequestParam ("direction") String direction, String direction = params.get("direction");
@ApiParam(value="类型(1:日, 2:月, 3:季度, 4-年)", name="type", required=true) @RequestParam ("type") String type, String type = params.get("type");
@ApiParam(value="时间", name="startTime", required=true) @RequestParam ("startTime") String startTime){ String startTime = params.get("startTime");
String fileUrl = params.get("fileUrl");
AjaxResult ajaxResult = trafficIncidentsService.selectRoadSectionAnalysis(direction,type,startTime); AjaxResult ajaxResult = trafficIncidentsService.selectRoadSectionAnalysis(direction,type,startTime);
List<RoadSectionAnalysis> list = new ArrayList<>(); List<RoadSectionAnalysis> list = new ArrayList<>();
if (ajaxResult.get("code").equals(UniversalEnum.TWO_HUNDRED.getNumber())) { if (ajaxResult.get("code").equals(UniversalEnum.TWO_HUNDRED.getNumber())) {
@ -630,7 +635,13 @@ public class DcTrafficIncidentsController {
} }
ExcelUtil<RoadSectionAnalysis> util = new ExcelUtil<>(RoadSectionAnalysis.class); ExcelUtil<RoadSectionAnalysis> util = new ExcelUtil<>(RoadSectionAnalysis.class);
util.exportExcel(response, list, "事故多发路段分析"); int commaIndex = fileUrl.indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = fileUrl.substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
util.exportImgExcel(response, list, "事故多发路段分析",imageBytes,8,12);
} }
/** /**
@ -652,11 +663,12 @@ public class DcTrafficIncidentsController {
} }
@ApiOperation(value="导出事故类型分析",tags = {"ECharts导出"}) @ApiOperation(value="导出事故类型分析",tags = {"ECharts导出"})
@GetMapping("/exportSelectEventTypeAnalysis") @PostMapping("/exportSelectEventTypeAnalysis")
public void exportSelectEventTypeAnalysis(HttpServletResponse response, public void exportSelectEventTypeAnalysis(HttpServletResponse response,@RequestBody Map<String,String> params) throws IOException {
@ApiParam(value="方向", name="direction", required=true) @RequestParam ("direction") String direction, String direction = params.get("direction");
@ApiParam(value="类型(1:日, 2:月, 3:季度, 4-年)", name="type", required=true) @RequestParam ("type") String type, String type = params.get("type");
@ApiParam(value="时间", name="startTime", required=true) @RequestParam ("startTime") String startTime){ String startTime = params.get("startTime");
String fileUrl = params.get("fileUrl");
AjaxResult ajaxResult = trafficIncidentsService.selectEventTypeAnalysis(direction,type,startTime); AjaxResult ajaxResult = trafficIncidentsService.selectEventTypeAnalysis(direction,type,startTime);
List<EventTypeAnalysis> list = new ArrayList<>(); List<EventTypeAnalysis> list = new ArrayList<>();
if (ajaxResult.get("code").equals(UniversalEnum.TWO_HUNDRED.getNumber())) { if (ajaxResult.get("code").equals(UniversalEnum.TWO_HUNDRED.getNumber())) {
@ -673,7 +685,13 @@ public class DcTrafficIncidentsController {
} }
ExcelUtil<EventTypeAnalysis> util = new ExcelUtil<>(EventTypeAnalysis.class); ExcelUtil<EventTypeAnalysis> util = new ExcelUtil<>(EventTypeAnalysis.class);
util.exportExcel(response, list, "事故类型分析"); int commaIndex = fileUrl.indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = fileUrl.substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
util.exportImgExcel(response, list, "事故类型分析",imageBytes,8,12);
} }
//事件时间数量占比 //事件时间数量占比
@ -697,4 +715,124 @@ public class DcTrafficIncidentsController {
hashMap.put("lastYearMap",lastYearMap); hashMap.put("lastYearMap",lastYearMap);
return AjaxResult.success(hashMap); return AjaxResult.success(hashMap);
} }
//事件时间数量占比
@PostMapping("/exportSelectEventTimeProportion")
public void exportSelectEventTimeProportion(HttpServletResponse response,@RequestBody DcWarning dcWarning) throws IOException {
if (dcWarning==null|| StringUtils.isBlank(dcWarning.getDirection())||StringUtils.isBlank(dcWarning.getType())||
dcWarning.getCurrently()==null||dcWarning.getLastYear()==null){
return ;
}
Date currently = dcWarning.getCurrently();
Date lastYear = dcWarning.getLastYear();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
String formattedDate = sdf.format(currently);
String format = sdf.format(lastYear);
List<HashMap<String, Object>> currentlyMap = trafficIncidentsService.selectEventTimeProportion(dcWarning.getDirection(),
dcWarning.getType(), formattedDate);
List<HashMap<String, Object>> lastYearMap = trafficIncidentsService.selectEventTimeProportion(dcWarning.getDirection(),
dcWarning.getType(), format);
HashMap<Object, Object> hashMap = new HashMap<>();
hashMap.put("currentlyMap",currentlyMap);
hashMap.put("lastYearMap",lastYearMap);
Set<String> dateKey = new HashSet<>();
String type = dcWarning.getType();
List<EventTimeProportion> list = new ArrayList<>();
if ("1".equals(type)){
currentlyMap.forEach(item ->{
dateKey.add(item.get("time").toString());
});
lastYearMap.forEach(item ->{
dateKey.add(item.get("time").toString());
});
//排序
Set<String> sortedDateKey = dateKey.stream()
.sorted(Comparator.comparingInt(Integer::parseInt))
.collect(Collectors.toCollection(LinkedHashSet::new));
for (String date : sortedDateKey) {
EventTimeProportion eventTimeProportion = new EventTimeProportion();
eventTimeProportion.setTime(date);
for (HashMap<String, Object> map : currentlyMap) {
if (date.equals(map.get("time").toString())){
eventTimeProportion.setCurrentData(map.get("number").toString());
break;
}
}
for (HashMap<String, Object> map : lastYearMap) {
if (date.equals(map.get("time").toString())){
eventTimeProportion.setContemporaneousData(map.get("number").toString());
break;
}
}
list.add(eventTimeProportion);
}
} else if ("2".equals(type)){
currentlyMap.forEach(item ->{
dateKey.add(item.get("day").toString());
});
lastYearMap.forEach(item ->{
dateKey.add(item.get("day").toString());
});
//排序
Set<String> sortedDateKey = dateKey.stream()
.sorted().collect(Collectors.toCollection(LinkedHashSet::new));
for (String date : sortedDateKey) {
EventTimeProportion eventTimeProportion = new EventTimeProportion();
eventTimeProportion.setTime(date);
for (HashMap<String, Object> map : currentlyMap) {
if (date.equals(map.get("day").toString())){
eventTimeProportion.setCurrentData(map.get("num").toString());
break;
}
}
for (HashMap<String, Object> map : lastYearMap) {
if (date.equals(map.get("day").toString())){
eventTimeProportion.setContemporaneousData(map.get("num").toString());
break;
}
}
list.add(eventTimeProportion);
}
} else if ("3".equals(type) || "4".equals(type)){
currentlyMap.forEach(item ->{
dateKey.add(item.get("month").toString());
});
lastYearMap.forEach(item ->{
dateKey.add(item.get("month").toString());
});
//排序
Set<String> sortedDateKey = dateKey.stream()
.sorted(Comparator.comparingInt(Integer::parseInt))
.collect(Collectors.toCollection(LinkedHashSet::new));
for (String date : sortedDateKey) {
EventTimeProportion eventTimeProportion = new EventTimeProportion();
eventTimeProportion.setTime(date);
for (HashMap<String, Object> map : currentlyMap) {
if (date.equals(map.get("month").toString())){
eventTimeProportion.setCurrentData(map.get("number").toString());
break;
}
}
for (HashMap<String, Object> map : lastYearMap) {
if (date.equals(map.get("month").toString())){
eventTimeProportion.setContemporaneousData(map.get("number").toString());
break;
}
}
list.add(eventTimeProportion);
}
}
ExcelUtil<EventTimeProportion> util = new ExcelUtil<>(EventTimeProportion.class);
int commaIndex = dcWarning.getFileUrl().indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = dcWarning.getFileUrl().substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
util.exportImgExcel(response, list, "事故时间分布",imageBytes,8,12);
}
} }

129
zc-business/src/main/java/com/zc/business/controller/DcTrafficStatisticsController.java

@ -289,8 +289,12 @@ public class DcTrafficStatisticsController extends BaseController {
* @param periodType 时间粒子 * @param periodType 时间粒子
*/ */
@ApiOperation(value = "导出全路段车流量状况分析", tags = {"ECharts导出"}) @ApiOperation(value = "导出全路段车流量状况分析", tags = {"ECharts导出"})
@GetMapping("/history/exportRealTimeTrafficFlow") @PostMapping("/history/exportRealTimeTrafficFlow")
public void exportRealTimeTrafficFlow(HttpServletResponse response, String startDate, String direction, String periodType) { public void exportRealTimeTrafficFlow(HttpServletResponse response,@RequestBody Map<String,String> params) throws IOException {
String startDate = params.get("startDate");
String direction = params.get("direction");
String periodType = params.get("periodType");
String fileUrl = params.get("fileUrl");
if (StringUtils.isEmpty(startDate) || StringUtils.isEmpty(direction) || StringUtils.isEmpty(periodType)) { if (StringUtils.isEmpty(startDate) || StringUtils.isEmpty(direction) || StringUtils.isEmpty(periodType)) {
return; return;
} }
@ -346,7 +350,14 @@ public class DcTrafficStatisticsController extends BaseController {
} }
ExcelUtil<RealTimeTrafficFlow> util = new ExcelUtil<>(RealTimeTrafficFlow.class); ExcelUtil<RealTimeTrafficFlow> util = new ExcelUtil<>(RealTimeTrafficFlow.class);
util.exportExcel(response, list, UniversalEnum.THE_WHOLE_SECTION_TWO_WAY_REAL_TIME_TRAFFIC_FLOW.getValue());
int commaIndex = fileUrl.indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = fileUrl.substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
util.exportImgExcel(response, list, UniversalEnum.THE_WHOLE_SECTION_TWO_WAY_REAL_TIME_TRAFFIC_FLOW.getValue(),imageBytes,5,12);
// 将查询结果封装为成功响应并返回 // 将查询结果封装为成功响应并返回
} }
@ -397,8 +408,12 @@ public class DcTrafficStatisticsController extends BaseController {
* @param periodType 时间粒子 * @param periodType 时间粒子
*/ */
@ApiOperation(value = "导出车流量时段分析", tags = {"ECharts导出"}) @ApiOperation(value = "导出车流量时段分析", tags = {"ECharts导出"})
@GetMapping("/history/exportTrafficPeriodAnalysis") @PostMapping("/history/exportTrafficPeriodAnalysis")
public void exportTrafficPeriodAnalysis(HttpServletResponse response, String startDate, String direction, String periodType) { public void exportTrafficPeriodAnalysis(HttpServletResponse response,@RequestBody Map<String,String> params) throws IOException {
String startDate = params.get("startDate");
String direction = params.get("direction");
String periodType = params.get("periodType");
String fileUrl = params.get("fileUrl");
if (StringUtils.isEmpty(startDate) || StringUtils.isEmpty(direction) || StringUtils.isEmpty(periodType)) { if (StringUtils.isEmpty(startDate) || StringUtils.isEmpty(direction) || StringUtils.isEmpty(periodType)) {
return; return;
} }
@ -454,7 +469,14 @@ public class DcTrafficStatisticsController extends BaseController {
} }
ExcelUtil<TrafficPeriodAnalysis> util = new ExcelUtil<>(TrafficPeriodAnalysis.class); ExcelUtil<TrafficPeriodAnalysis> util = new ExcelUtil<>(TrafficPeriodAnalysis.class);
util.exportExcel(response, list, UniversalEnum.TRAFFIC_PERIOD_ANALYSIS.getValue());
int commaIndex = fileUrl.indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = fileUrl.substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
util.exportImgExcel(response, list, UniversalEnum.TRAFFIC_PERIOD_ANALYSIS.getValue(),imageBytes,5,12);
} }
@ApiOperation("断面车流量排名") @ApiOperation("断面车流量排名")
@ -474,8 +496,12 @@ public class DcTrafficStatisticsController extends BaseController {
* @param periodType 时间粒子 * @param periodType 时间粒子
*/ */
@ApiOperation(value = "导出断面车流量排名", tags = {"ECharts导出"}) @ApiOperation(value = "导出断面车流量排名", tags = {"ECharts导出"})
@GetMapping("/history/exportSectionTrafficRanking") @PostMapping("/history/exportSectionTrafficRanking")
public void exportSectionTrafficRanking(HttpServletResponse response, String startDate, String direction, String periodType) { public void exportSectionTrafficRanking(HttpServletResponse response,@RequestBody Map<String,String> params) throws IOException {
String startDate = params.get("startDate");
String direction = params.get("direction");
String periodType = params.get("periodType");
String fileUrl = params.get("fileUrl");
List<SectionTrafficRanking> list = new ArrayList<>(); List<SectionTrafficRanking> list = new ArrayList<>();
List<Map<String, String>> dcStatisticsData = dcGantryStatisticsDataService.sectionTrafficRanking(startDate, direction, periodType); List<Map<String, String>> dcStatisticsData = dcGantryStatisticsDataService.sectionTrafficRanking(startDate, direction, periodType);
for (int i = UniversalEnum.ZERO.getNumber(); i < dcStatisticsData.size(); i++) { for (int i = UniversalEnum.ZERO.getNumber(); i < dcStatisticsData.size(); i++) {
@ -487,7 +513,15 @@ public class DcTrafficStatisticsController extends BaseController {
} }
ExcelUtil<SectionTrafficRanking> util = new ExcelUtil<>(SectionTrafficRanking.class); ExcelUtil<SectionTrafficRanking> util = new ExcelUtil<>(SectionTrafficRanking.class);
util.exportExcel(response, list, UniversalEnum.SECTION_TRAFFIC_RANKING.getValue());
int commaIndex = fileUrl.indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = fileUrl.substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
util.exportImgExcel(response, list, UniversalEnum.SECTION_TRAFFIC_RANKING.getValue(),imageBytes,3,28);
} }
@ -508,8 +542,17 @@ public class DcTrafficStatisticsController extends BaseController {
} }
@ApiOperation(value = "导出路段交通指标分析", tags = {"ECharts导出"}) @ApiOperation(value = "导出路段交通指标分析", tags = {"ECharts导出"})
@GetMapping("/history/exportSectionTrafficIndexAnalysis") @PostMapping("/history/exportSectionTrafficIndexAnalysis")
public void exportSectionTrafficIndexAnalysis(HttpServletResponse response, String startDate, String direction, String periodType, Long ranking) { public void exportSectionTrafficIndexAnalysis(HttpServletResponse response,@RequestBody Map<String,Object> params) throws IOException {
String startDate = params.get("startDate").toString();
String direction = params.get("direction").toString();
String periodType = params.get("periodType").toString();
Long ranking = null;
if (params.containsKey("ranking")){
ranking = Long.valueOf(params.get("ranking").toString());
}
String fileUrl = params.get("fileUrl").toString();
List<SectionTrafficIndexAnalysis> list = new ArrayList<>(); List<SectionTrafficIndexAnalysis> list = new ArrayList<>();
String endDate = UniversalEnum.EMPTY_STRING.getValue(); String endDate = UniversalEnum.EMPTY_STRING.getValue();
@ -571,7 +614,13 @@ public class DcTrafficStatisticsController extends BaseController {
} }
ExcelUtil<SectionTrafficIndexAnalysis> util = new ExcelUtil<>(SectionTrafficIndexAnalysis.class); ExcelUtil<SectionTrafficIndexAnalysis> util = new ExcelUtil<>(SectionTrafficIndexAnalysis.class);
util.exportExcel(response, list, UniversalEnum.SECTION_TRAFFIC_INDEX_ANALYSIS.getValue()); int commaIndex = fileUrl.indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = fileUrl.substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
util.exportImgExcel(response, list, UniversalEnum.SECTION_TRAFFIC_INDEX_ANALYSIS.getValue(),imageBytes,7,14);
// 将查询结果封装为成功响应并返回 // 将查询结果封装为成功响应并返回
} }
@ -584,8 +633,13 @@ public class DcTrafficStatisticsController extends BaseController {
} }
@ApiOperation(value = "导出交通指标时间分布", tags = {"ECharts导出"}) @ApiOperation(value = "导出交通指标时间分布", tags = {"ECharts导出"})
@GetMapping("/history/exportPassIndicatorTimeDistribution") @PostMapping("/history/exportPassIndicatorTimeDistribution")
public void exportPassIndicatorTimeDistribution(HttpServletResponse response, String startDate, String direction, String periodType) { public void exportPassIndicatorTimeDistribution(HttpServletResponse response, @RequestBody Map<String,String> params) throws IOException {
String startDate = params.get("startDate");
String direction = params.get("direction");
String periodType = params.get("periodType");
String fileUrl = params.get("fileUrl");
List<PassIndicatorTimeDistribution> list = new ArrayList<>(); List<PassIndicatorTimeDistribution> list = new ArrayList<>();
String endDate = UniversalEnum.EMPTY_STRING.getValue(); String endDate = UniversalEnum.EMPTY_STRING.getValue();
@ -686,7 +740,14 @@ public class DcTrafficStatisticsController extends BaseController {
} }
ExcelUtil<PassIndicatorTimeDistribution> util = new ExcelUtil<>(PassIndicatorTimeDistribution.class); ExcelUtil<PassIndicatorTimeDistribution> util = new ExcelUtil<>(PassIndicatorTimeDistribution.class);
util.exportExcel(response, list, "交通指标时间分布");
int commaIndex = fileUrl.indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = fileUrl.substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
util.exportImgExcel(response, list, "交通指标时间分布",imageBytes,7,14);
// 将查询结果封装为成功响应并返回 // 将查询结果封装为成功响应并返回
} }
@ -922,8 +983,8 @@ public class DcTrafficStatisticsController extends BaseController {
* 导出收费站出入口实时车流量 * 导出收费站出入口实时车流量
*/ */
@ApiOperation(value = "导出收费站出入口实时车流量", tags = {"ECharts导出"}) @ApiOperation(value = "导出收费站出入口实时车流量", tags = {"ECharts导出"})
@GetMapping("/history/exportTrafficFlowAtTollStationEntranceHour") @PostMapping("/history/exportTrafficFlowAtTollStationEntranceHour")
public void exportTrafficFlowAtTollStationEntranceHour(HttpServletResponse response) throws IOException, HttpException { public void exportTrafficFlowAtTollStationEntranceHour(HttpServletResponse response,@RequestBody Map<String,String> params) throws IOException, HttpException {
response.setContentType(UniversalEnum.DERIVE_THE_TWO_WAY_REAL_TIME_TRAFFIC_FLOW_OF_THE_WHOLE_SECTION.getValue()); response.setContentType(UniversalEnum.DERIVE_THE_TWO_WAY_REAL_TIME_TRAFFIC_FLOW_OF_THE_WHOLE_SECTION.getValue());
response.setCharacterEncoding(UniversalEnum.LOWERCASE_UTF_8.getValue()); response.setCharacterEncoding(UniversalEnum.LOWERCASE_UTF_8.getValue());
@ -1104,6 +1165,21 @@ public class DcTrafficStatisticsController extends BaseController {
// 写入文件 // 写入文件
try (ServletOutputStream outputStream = response.getOutputStream()) { try (ServletOutputStream outputStream = response.getOutputStream()) {
String fileUrl = params.get("fileUrl");
int commaIndex = fileUrl.indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = fileUrl.substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
// 添加图片到工作簿并获取图片索引
int pictureIdx = workbook.addPicture(imageBytes, Workbook.PICTURE_TYPE_JPEG);
// 创建绘图对象
Drawing<?> drawing = sheet.createDrawingPatriarch();
// 设置图片位置
ClientAnchor anchor = drawing.createAnchor(0, 0, 0, 0, 0, LocationEnum.values().length+3, 12, LocationEnum.values().length + 3 + 12);
Picture pict = drawing.createPicture(anchor, pictureIdx);
workbook.write(outputStream); workbook.write(outputStream);
} finally { } finally {
workbook.close(); workbook.close();
@ -1171,8 +1247,8 @@ public class DcTrafficStatisticsController extends BaseController {
* 导出全路段双向实时车流量 * 导出全路段双向实时车流量
*/ */
@ApiOperation(value = "导出全路段双向实时车流量", tags = {"ECharts导出"}) @ApiOperation(value = "导出全路段双向实时车流量", tags = {"ECharts导出"})
@GetMapping("/history/exportRealTimeTrafficFlowHour") @PostMapping("/history/exportRealTimeTrafficFlowHour")
public void exportRealTimeTrafficFlowHour(HttpServletResponse response) throws IOException, HttpException { public void exportRealTimeTrafficFlowHour(HttpServletResponse response,@RequestBody Map<String,String> params) throws IOException, HttpException {
response.setContentType(UniversalEnum.DERIVE_THE_TWO_WAY_REAL_TIME_TRAFFIC_FLOW_OF_THE_WHOLE_SECTION.getValue()); response.setContentType(UniversalEnum.DERIVE_THE_TWO_WAY_REAL_TIME_TRAFFIC_FLOW_OF_THE_WHOLE_SECTION.getValue());
response.setCharacterEncoding(UniversalEnum.LOWERCASE_UTF_8.getValue()); response.setCharacterEncoding(UniversalEnum.LOWERCASE_UTF_8.getValue());
@ -1289,6 +1365,21 @@ public class DcTrafficStatisticsController extends BaseController {
// 写入文件 // 写入文件
try (ServletOutputStream outputStream = response.getOutputStream()) { try (ServletOutputStream outputStream = response.getOutputStream()) {
String fileUrl = params.get("fileUrl");
int commaIndex = fileUrl.indexOf(',');
if (commaIndex == -1) {
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data");
}
String base64Data = fileUrl.substring(commaIndex + 1);
byte[] imageBytes = Base64.getDecoder().decode(base64Data);
// 添加图片到工作簿并获取图片索引
int pictureIdx = workbook.addPicture(imageBytes, Workbook.PICTURE_TYPE_JPEG);
// 创建绘图对象
Drawing<?> drawing = sheet.createDrawingPatriarch();
// 设置图片位置
ClientAnchor anchor = drawing.createAnchor(0, 0, 0, 0, 0, thisYearHZ.size()+3, 12, thisYearHZ.size() + 3 + 12);
Picture pict = drawing.createPicture(anchor, pictureIdx);
workbook.write(outputStream); workbook.write(outputStream);
} finally { } finally {
workbook.close(); workbook.close();

1
zc-business/src/main/java/com/zc/business/domain/DcPublishManage.java

@ -173,4 +173,5 @@ public class DcPublishManage extends BaseEntity {
private Long logId; private Long logId;
@TableField(exist = false) @TableField(exist = false)
private String ip; private String ip;
private String fileUrl;
} }

9
zc-business/src/main/java/com/zc/business/domain/DcWarning.java

@ -163,6 +163,15 @@ public class DcWarning extends BaseEntity
private Date currently; private Date currently;
private Long facilityId; private Long facilityId;
private String fileUrl;
public String getFileUrl() {
return fileUrl;
}
public void setFileUrl(String fileUrl) {
this.fileUrl = fileUrl;
}
public Long getFacilityId() { public Long getFacilityId() {
return facilityId; return facilityId;

62
zc-business/src/main/java/com/zc/business/domain/export/EventTimeProportion.java

@ -0,0 +1,62 @@
package com.zc.business.domain.export;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
* 导出事故时间分析对象
*
* @author ruoyi
* @date 2024-01-13
*/
public class EventTimeProportion extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 时间 */
@Excel(name = "时间")
private String time;
/** 事件数量 */
@Excel(name = "事件数量(起)")
private String currentData;
/** 去年同期 */
@Excel(name = "去年同期(起)")
private String contemporaneousData;
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
public String getCurrentData() {
return currentData;
}
public void setCurrentData(String currentData) {
this.currentData = currentData;
}
public String getContemporaneousData() {
return contemporaneousData;
}
public void setContemporaneousData(String contemporaneousData) {
this.contemporaneousData = contemporaneousData;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("time", getTime())
.append("currentData", getCurrentData())
.append("contemporaneousData", getContemporaneousData())
.toString();
}
}
Loading…
Cancel
Save