摘要:
问题:在linux服务器使用aspose.word转换word文件为pdf的时候显示中文乱码,但是在window服务器上使用可以正常转换。 原因:由于linux服务器缺少对应的中文字体导致文件转换出现乱码的 解决方法:将window系统下的c:\\windows\\fonts文件夹放到liunx服务 阅读全文
摘要:
SimpleDateFormat df= new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Calendar c = Calendar.getInstance(); //累加七天 c.setTime(new Date()); c.add(Calendar.DA 阅读全文
摘要:
关于实体类转json再由json转实体类遇到的时间戳转换问题 使用JSON.toJSONString(实体类) 时间戳会转换为"createdTime" : 1592791174000,这种形势 这样再通过JSON.parseObject(JSON串, 实体类.class);转换为实体类 如果是数组 阅读全文
摘要:
后端代码 public void exportExcel(@RequestParam(required = true) String Id, HttpServletResponse response, HttpServletRequest request) { String msg =""; try 阅读全文
摘要:
//页面分为左右两部分,下面是主要的代码<div class="container"> <el-container style="height: calc(100vh - 90px); border: 1px solid #eee"> <el-aside width="300px" style="b 阅读全文
摘要:
<el-checkbox :style="{display:isAlter '1'?'':'none',margin:'0 10px 0',}" v-model="isAlters" :disabled="ischange">当前页有涂改</el-checkbox> 阅读全文
摘要:
npm install --save xlsx file-saver 在组件里面引入 import FileSaver from 'file-saver' import XLSX from 'xlsx' 第一种 其中#outTable是在el-table上定义的id exportExcel() { 阅读全文
摘要:
import echarts from 'echarts';import "echarts/map/js/province/henan.js"; <div id="hndt" style="width: 100%;height: 50%;"></div> 轨迹数据没有贴完只有一个的其它的自己增加就行 阅读全文
摘要:
在main.js中引入echarts import echarts from 'echarts' Vue.prototype.$echarts = echarts 在相应的vue中导入echarts import echarts from 'echarts'; 实现柱状图显示 <div style= 阅读全文
摘要:
配置拦截器 @Configuration public class InterceptorConfig implements WebMvcConfigurer { @Autowired private ResponseInteceptor appInteceptor; @Autowired priv 阅读全文