java
小卒过河0104
在强者的眼中,没有最好,只有更好。
展开
-
java通过poi-tl使用word模版生成word文件
问题描述:使用work模板文件来生成word文件。问题解决:1、使用apache poi 来生成word文件 2、使用Poi-tl生成 本章主要讲如何使用poi-tl通过模版文件生成word文件。关于poi-tlpoi-tl:poi template language 一个基于poi的word模板生成文档的开源组件。文档介绍:http://deep原创 2017-11-13 14:36:10 · 11628 阅读 · 22 评论 -
JAVA 使用JAX生成webservice
JDK1.7以上:@WebServicepublic class BrushCardService {public String acceptBrushCard(String name) {return "Test sucessfully, you input name is :" + name; }public static void main(String[]原创 2017-11-29 17:09:50 · 290 阅读 · 0 评论 -
poi-tl实现自定义RenderPolicy实现对表格进行列表
主程序如下:import java.util.List;import java.util.Map;import org.apache.poi.xwpf.usermodel.XWPFRun;import org.apache.poi.xwpf.usermodel.XWPFTable;import org.apache.poi.xwpf.usermodel.XWPFTableC...原创 2017-11-22 14:40:49 · 12983 阅读 · 8 评论 -
poi-tl 自定义图片处理类,解决生成多个文件时图片重复出现在word文档中问题
poi-tl 生成图片后,清除图片原创 2017-11-30 09:52:32 · 7303 阅读 · 0 评论 -
nginx-redis-tomcat8实现负载均衡,session共享
一、安装nginx (这里我单独建了一个虚拟机192.168.10.12来安装nginx,redis服务) 1)使用命令安装nginx :apt install nginx 2)配置nginx,配置文件位置:/etc/nginx/nginx.conf 3)本文配置文件/sites-enabled/default因为nginx.conf中引用了此文件,所以可在此文件内配...原创 2018-01-18 09:52:33 · 2770 阅读 · 0 评论 -
使用maven 快速搭建springboot项目
maven pom.xml配置如下:org.springframework.bootspring-boot-starter-parent1.5.3.RELEASEjunitjunittestorg.springframework.bootspring-boot-starter原创 2017-11-23 16:45:03 · 6431 阅读 · 0 评论 -
eclipse删除java中的注释
注释有两种:1、/* xxxxx*/2、//xxxxxx使用eclipse查询,查询选项在regular expressions 上打勾。以下为删除步骤:1、删除/*xxxx*/ 正则表达式为:/\*{1,2}[\s\S]*?\*/2、删除//xxxxx 正则表达式为://+.*搜索,全部替换删除完成 。由于文中还有一些空行也需要删除,这里使用n...原创 2018-08-08 17:10:38 · 2480 阅读 · 0 评论 -
POI 读取excel文档中输入日期格式为字符串
通过cell.getCellStyle().getDataFormat();根据这个值进行时间、日期格式的判断;时间格式为了获取用户输入什么格式就显示什么格式,做以下整理: 通过对format值的判断调用格式化日期类型值。如下: int dformat = hssfCell.getCellStyle().getDataFormat(); ...原创 2018-08-30 17:21:25 · 6749 阅读 · 1 评论