POI 生成word 文档 一般有两种方法:

① word模板 生成word 文档 ;

② 写代码直接生成 word 文档;

我这里演示的是第二种方法,即写代码生成 word文档,不多说废话,直接代码;

/**
* 镇街日报导出word
*/
@RequestMapping(params = "exportWordForTownDaily")
public void exportWordForTownDaily(HttpServletResponse response ,String selectDate){
if(StringUtils.isNullOrEmpty(selectDate)){
return;
}
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
try{
sdf.parse(selectDate);
}catch (Exception e){
e.printStackTrace();
return;
}
CaseEntity entity = new CaseEntity();
entity.setRepotingTime_begin(selectDate + " 00:00:00");
entity.setRepotingTime_end(selectDate + " 23:59:59");
//获取镇街实际扣分
List<CaseEntity> caseEntityList = statisticsService.getTownActualScore(entity);
//获取各镇街情况
List<Map<String, Object>> townDaily = statisticsService.townDaily(entity);
//格式化查询日期(年月日)
SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy年MM月dd日");
try {
selectDate = sdf2.format(sdf.parse(selectDate));
} catch (ParseException e) {
e.printStackTrace();
} //------------------------------------生成word文档------------------------------------------------
//创建document对象
XWPFDocumentUtil document = new XWPFDocumentUtil();
//创建标题段落
XWPFParagraph titleParag = document.createParagraph();
XWPFRun titleRun = titleParag.createRun();
titleRun.setText("镇街日报");
titleRun.setFontSize(20);
titleRun.setBold(true);//字体是否加粗
titleParag.setAlignment(ParagraphAlignment.LEFT);//段落居左 //换行
//XWPFParagraph brParagraph1 = document.createParagraph();
//XWPFRun brRun = brParagraph1.createRun();
//brRun.setText("\n");
//创建一个段落
XWPFParagraph p = document.createParagraph();
int rows = caseEntityList.size()+1;
int cols = 3;
//创建一个表格
XWPFTable table= document.createTable(rows, cols);
//表格属性
CTTblPr tablePr = table.getCTTbl().addNewTblPr();
//表格宽度
CTTblWidth width = tablePr.addNewTblW();
width.setW(BigInteger.valueOf(5000));
//设置表格宽度为非自动
width.setType(STTblWidth.DXA); //表头行
XWPFTableRow headRow = table.getRow(0);
XWPFTableCell headCell0 = headRow.getCell(0);
XWPFTableCell headCell1 = headRow.getCell(1);
XWPFTableCell headCell2 = headRow.getCell(2); p = headCell0.addParagraph();
XWPFRun headRun0 = p.createRun();
headRun0.setText("序号");
headRun0.setFontSize(12);
headRun0.setBold(true);//是否粗体
headCell0.setColor("DEDEDE");
//垂直居中
p.setVerticalAlignment(TextAlignment.CENTER);
//水平居中
p.setAlignment(ParagraphAlignment.CENTER); p = headCell1.addParagraph();
XWPFRun headRun1 = p.createRun();
headRun1.setText("镇街");
headRun1.setFontSize(12);
headRun1.setBold(true);
headCell1.setColor("DEDEDE");
//垂直居中
p.setVerticalAlignment(TextAlignment.CENTER);
//水平居中
p.setAlignment(ParagraphAlignment.CENTER); p = headCell2.addParagraph();
XWPFRun headRun2 = p.createRun();
headRun2.setFontSize(12);
headRun2.setText("总扣分");
headRun2.setBold(true);
headCell2.setColor("DEDEDE");
//垂直居中
p.setVerticalAlignment(TextAlignment.CENTER);
//水平居中
p.setAlignment(ParagraphAlignment.CENTER); //表主体行
for(int i=0 ;i<caseEntityList.size();i++){
CaseEntity caseEntity = caseEntityList.get(i);
XWPFTableRow contentRow = table.getRow(i+1);
XWPFTableCell cell0 = contentRow.getCell(0);
XWPFTableCell cell1 = contentRow.getCell(1);
XWPFTableCell cell2 = contentRow.getCell(2); p = cell0.addParagraph();
XWPFRun pRun0=p.createRun();
pRun0.setText(i+1+"");
//垂直居中
cell0.setVerticalAlignment(XWPFTableCell.XWPFVertAlign.CENTER);
//水平居中
p.setAlignment(ParagraphAlignment.CENTER); p = cell1.addParagraph();
XWPFRun pRun1=p.createRun();
pRun1.setText(caseEntity.getTownName());
//垂直居中
cell1.setVerticalAlignment(XWPFTableCell.XWPFVertAlign.CENTER);
//水平居中
p.setAlignment(ParagraphAlignment.CENTER); p = cell2.addParagraph();
XWPFRun pRun2=p.createRun();
pRun2.setText(caseEntity.getTownActualScore().toString());
//垂直居中
cell2.setVerticalAlignment(XWPFTableCell.XWPFVertAlign.CENTER);
//水平居中
p.setAlignment(ParagraphAlignment.CENTER);
}
//-----------------------------各镇街情况------------------------------
//创建标题段落
XWPFParagraph title1 = document.createParagraph();
XWPFRun title1Run = title1.createRun();
title1Run.setText("\r各镇街比较严重的问题");
title1Run.setFontSize(20);
title1Run.setBold(true); try {
for(Map<String,Object> townMap:townDaily){
CaseEntity townCase = (CaseEntity)townMap.get("townCase");
XWPFParagraph xwpfParagraph = document.createParagraph();
XWPFRun xwpfRun_town = xwpfParagraph.createRun();
XWPFRun xwpfRun = xwpfParagraph.createRun();
xwpfRun_town.setText(townCase.getTownName());
xwpfRun_town.setFontSize(14);
xwpfRun_town.setBold(true);
xwpfRun_town.setColor("00cc44");
xwpfRun.setText(","+selectDate+"当天扣分较多的问题有:");
xwpfRun.setFontSize(14);
xwpfRun.setBold(true);
List<Map<String,Object>> caseInfoList = (List<Map<String,Object>>)townMap.get("caseInfoList");
Integer no = 0;
for(Map<String,Object> map:caseInfoList){
CaseEntity caseInfo = (CaseEntity)map.get("caseInfo");
XWPFParagraph xwpfParagraph1 = document.createParagraph();
XWPFRun xwpfRun1 =xwpfParagraph1.createRun();
XWPFRun xwpfRun2 = xwpfParagraph1.createRun();
XWPFRun xwpfRun3 = xwpfParagraph1.createRun();
xwpfRun1.setText((++no)+"、");
xwpfRun2.setText(caseInfo.getProblemStreet());
xwpfRun3.setText(","+caseInfo.getProblemNotes());
xwpfRun1.setFontSize(14);
xwpfRun2.setFontSize(14);
xwpfRun2.setColor("4747d1");
xwpfRun3.setFontSize(14);
List<AttachmentEntity> fileList = (List<AttachmentEntity>)map.get("fileList");
for(AttachmentEntity at:fileList){
String mainPath = at.getMainPath();
String path = at.getPath();
if(!StringUtils.isNullOrEmpty(mainPath) && !StringUtils.isNullOrEmpty(path)){
//第一张图片
document.addPictureData(new FileInputStream(mainPath+path), XWPFDocumentUtil.PICTURE_TYPE_JPEG);
document.createPicture(document.getAllPictures().size() - 1, 300, 400, document.createParagraph());
}
}
}
} OutputStream output = response.getOutputStream();
//生成word文件的文件名
String fileName= new String(("镇街日报.docx").getBytes("UTF-8"),"iso-8859-1");
response.setHeader("Content-disposition", "attachment; filename=" + fileName);
//把word文档写到输出流
document.write(output);
} catch (InvalidFormatException e) {
e.printStackTrace();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
//--------------------------------word文档结束-----------------------------------------------------
}

  

   效果如下图所示:

 

POI 生成 word 文档 简单版(包括文字、表格、图片、字体样式设置等)的更多相关文章

  1. POI生成WORD文档

    h2:first-child, body>h1:first-child, body>h1:first-child+h2, body>h3:first-child, body>h ...

  2. POI生成word文档完整案例及讲解

    一,网上的API讲解 其实POI的生成Word文档的规则就是先把获取到的数据转成xml格式的数据,然后通过xpath解析表单式的应用取值,判断等等,然后在把取到的值放到word文档中,最后在输出来. ...

  3. 使用poi根据模版生成word文档,支持插入数据和图片

    一.制作word模版,${xxxx}是一会要替换的内容,最下面的表格是要插入数据,根据是否以$开头来判断是需要替换还是插入数据, 注意如果是需要插入数据,制作的表格模版需要一行空行,也只能有一行空行, ...

  4. java POI往word文档中指定位置插入表格

    1.Service  demo import java.awt.Color; import java.awt.Font; import java.awt.Graphics; import java.a ...

  5. Poi之Word文档结构介绍

    1.poi之word文档结构介绍之正文段落 一个文档包含多个段落,一个段落包含多个Runs,一个Runs包含多个Run,Run是文档的最小单元 获取所有段落:List<XWPFParagraph ...

  6. Aspose.Words简单生成word文档

    Aspose.Words简单生成word文档 Aspose.Words.Document doc = new Aspose.Words.Document(); Aspose.Words.Documen ...

  7. POI加dom4j将数据库的数据按一定格式生成word文档

    一:需求:将从数据库查处来的数据,生成word文档,并有固定的格式.(dom4j的jar包+poi的jar包) 二:解决:(1)先建立固定格式的word文档(2007版本以上),另存成为xml文件,作 ...

  8. C#简单实现动态数据生成Word文档并保存

    今天正好有人问我,怎么生成一个报表式的Word文档. 就是文字的样式和位置相对固定不变,只是里面的内容从数据中读取. 我觉得类似这种的一般用第三方报表来做比较简便.但既然要求了Word,只好硬着头皮来 ...

  9. Android根据word模板文档将表单数据生成word文档的方案整理

    版权声明:本文为HaiyuKing原创文章,转载请注明出处! 前言 尝试的方案包括以下几种: freemarker 只能在java项目上运行,无法在Android项目上运行: 参考资料:<Fre ...

随机推荐

  1. httpd2.2

    httpd -t:检查httpd配置文件/etc/httpd/conf/httpd.conf的语法错误 请求报文语法 <method> <request-URL> <ve ...

  2. Redis系列---操作命令及数据类型

    本章将简单介绍下,Redis里面常用的数据类型以及我们常用到的一些命令,let's go 准备环境: Redis  详细见上一个章节 我们接下来操作的命令用的是Redis自带的客户端工具,在安装red ...

  3. 你不知道的 IDEA Debug调试小技巧

    一.多线程调试断点 Intellij IDEA 的debug断点调试是有一个模式的选择的,就像下面这张图,平时我们都使用的是默认的 ALL(在Eclipse中默认是线程模式) ,这种模式我们只能将一个 ...

  4. 全网最新最简单的 OpenJDK13 代码编译

    目录 开始咯 1.下载源码 2.安装编译需要的依赖 3.安装 jdk 12 4.检查配置 5.开始编译 6.验证是否成功 回顾 个人博客原文:全网最新最简单的 OpenJDK13 代码编译 最近因写文 ...

  5. 使用 Docker 让部署 Django 项目更加轻松

    作者:HelloGitHub-追梦人物 文中涉及的示例代码,已同步更新到 HelloGitHub-Team 仓库 之前一系列繁琐的部署步骤让我们感到痛苦.这些痛苦包括: 要去服务器上执行 n 条命令 ...

  6. ES(Elastic Search)update操作设置无 docment时进行insert

    最近使用一套数据加工中间工具,查看es操作中的update操作.其中方法命名为updateOrInsert.但是没发现代码中有ES的insert方法调用.于是仔细分析了代码逻辑. 经过一路追溯,直至E ...

  7. Window下的VScode快捷键

    转载自4ark 全局 Ctrl + Shift + P, F1 显示命令面板 Ctrl + P 快速打开Ctrl + Shift + N 打开新窗口Ctrl + Shift + W 关闭窗口 基本 C ...

  8. 自己动手撸一个LinkedList

    自己动手撸一个LinkedList 1. 原理 LinkedList是基于双链表的动态数组,数据添加删除效率高,只需要改变指针指向即可,但是访问数据的平均效率低,需要对链表进行遍历.因此,Linked ...

  9. requests模块(代理)篇

    - 用户验证 - 代理验证 #可能需要使用HTTP basic Auth, 可以这样 # 格式为 用户名:密码@代理地址:端口地址 proxy = { "http": " ...

  10. tcpdump使用详情及案例

    转载http://starsliao.blog.163.com/blog/static/89048201062333032563/ TCPdump抓包命令tcpdump是一个用于截取网络分组,并输出分 ...