摘要: 首先需要导入jar 引入包 maven 引入greemarker模板 <!-- freemarker jar --> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version 阅读全文
posted @ 2020-08-03 14:26 wc_nan 阅读(923) 评论(0) 推荐(0) 编辑
摘要: java代码 public void htmlToWord2() throws Exception { InputStream bodyIs = new FileInputStream("f:\\1.html"); InputStream cssIs = new FileInputStream("f 阅读全文
posted @ 2020-07-29 15:58 wc_nan 阅读(3402) 评论(0) 推荐(0) 编辑
摘要: option = { color:['#ED7D31','#4472C4','#FFC000','#A5A5A5'], tooltip: { trigger: 'axis', axisPointer: { type: 'cross', crossStyle: { color: '#999' } } 阅读全文
posted @ 2020-07-21 13:24 wc_nan 阅读(1042) 评论(0) 推荐(0) 编辑
摘要: left: 50%; top: 50%; transform: translate(-50%, -50%); 阅读全文
posted @ 2020-06-23 10:29 wc_nan 阅读(482) 评论(0) 推荐(0) 编辑
摘要: window.onresize = function(){ var width=$("body").width(); var height=$("body").height(); alert("height:"+height+" width:"+width) } 阅读全文
posted @ 2020-06-22 10:01 wc_nan 阅读(1478) 评论(0) 推荐(0) 编辑
摘要: //定义一个变量 String str="0" //这个校验为整数 str.matches("\\d+") //这个校验为浮点数 str.matches("\\d+\\.\\d*"); 阅读全文
posted @ 2020-06-10 16:40 wc_nan 阅读(1403) 评论(0) 推荐(0) 编辑
摘要: <label class="textbox-label textbox-label-before" style="text-align: left; height: 30px; line-height: 30px;">考核年月</label> <span> <input id="yearMonthS 阅读全文
posted @ 2020-06-03 09:29 wc_nan 阅读(219) 评论(0) 推荐(0) 编辑
摘要: package com.code.modules.roaddiseasecontroller; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.code.modules.utils 阅读全文
posted @ 2020-06-01 18:38 wc_nan 阅读(246) 评论(0) 推荐(0) 编辑
摘要: select to_char(last_day(to_date('2020-02','yyyy-mm')),'dd') from dual用 last_day 的函数 阅读全文
posted @ 2020-06-01 09:37 wc_nan 阅读(1800) 评论(0) 推荐(0) 编辑
摘要: package com.code.modules.roaddiseasecontroller; import com.alibaba.fastjson.JSON; import java.io.DataInputStream; import java.io.DataOutputStream; imp 阅读全文
posted @ 2020-05-29 15:06 wc_nan 阅读(163) 评论(0) 推荐(0) 编辑