代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Java
】
poi导出word
作者:
擎宇
/ 发布于
2016/4/26
/
823
package com.lzb.crm.web; import java.io.FileOutputStream; import java.math.BigInteger; import java.util.List; import org.apache.poi.xwpf.usermodel.Borders; import org.apache.poi.xwpf.usermodel.BreakClear; import org.apache.poi.xwpf.usermodel.BreakType; import org.apache.poi.xwpf.usermodel.LineSpacingRule; import org.apache.poi.xwpf.usermodel.ParagraphAlignment; import org.apache.poi.xwpf.usermodel.VerticalAlign; import org.apache.poi.xwpf.usermodel.XWPFDocument; import org.apache.poi.xwpf.usermodel.XWPFParagraph; import org.apache.poi.xwpf.usermodel.XWPFRun; import org.apache.poi.xwpf.usermodel.XWPFTable; import org.apache.poi.xwpf.usermodel.XWPFTableCell; import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTblPr; import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTblWidth; /** * * @author 全力以赴001 */ public class ExportDocTest { public static void main(String[] args) throws Exception { XWPFDocument doc = new XWPFDocument(); XWPFParagraph title = doc.createParagraph();//设置活动标题 title.setAlignment(ParagraphAlignment.CENTER); XWPFRun r1 = title.createRun(); r1.setBold(true); r1.setFontFamily("宋体"); r1.setText("20元优惠劵活动");//活动名称 r1.setFontSize(22); XWPFParagraph actTheme = doc.createParagraph();//设置活动主题 actTheme.setAlignment(ParagraphAlignment.LEFT); XWPFRun runText1=actTheme.createRun(); runText1.setText("活动主题:20劵优惠劵活动"); runText1.setFontSize(15); XWPFParagraph actType = doc.createParagraph();//设置活动类型 XWPFRun runText2=actType.createRun(); runText2.setText("活动类型:系统发劵类型"); runText2.setFontSize(15); XWPFParagraph actDate = doc.createParagraph();//设置活动日期 XWPFRun actDaterun=actDate.createRun(); actDaterun.setText("活动日期:2015-06-08至2015-06-10"); actDaterun.setFontSize(15); XWPFParagraph actText = doc.createParagraph();//设置活动内容 XWPFRun runText3=actText.createRun(); runText3.setText("活动内容:哈哈哈士大夫士大夫立刻绝对是方路即可大水井坊路可绝对是弗兰克家第三方立刻几点睡了罚款绝对是路客服绝对是路客服绝对是路客服几点睡了罚款家第三方立刻几点睡了罚款记录可定时 "); runText3.setFontSize(15); XWPFParagraph actRemark = doc.createParagraph();//设置活动备注 XWPFRun runText4=actRemark.createRun(); runText4.setText("活动备注: "); runText4.setFontSize(15); runText4.setBold(true); XWPFRun runText5=actRemark.createRun(); runText5.setText("我是活动备注哦........................ "); runText5.setFontSize(15); XWPFParagraph actRule = doc.createParagraph();//设置活动备注 XWPFRun rule=actRule.createRun(); rule.setText("活动规则: "); rule.setFontSize(15); rule.setBold(true); XWPFTable table=actRule.getDocument().createTable(2,2);//创建表格 table.setWidth(500); table.setCellMargins(20, 20, 20, 20); System.out.println(table.getWidth()); //表格属性 CTTblPr tablePr = table.getCTTbl().addNewTblPr(); //表格宽度 CTTblWidth width = tablePr.addNewTblW(); width.setW(BigInteger.valueOf(8000)); List<XWPFTableCell> tableCells = table.getRow(0).getTableCells(); tableCells.get(0).setText("第一行第一列的数据:规则类型名称"); tableCells.get(1).setText("第一行第二列的数据:规则描述"); List<XWPFTableCell> tableCellsq = table.getRow(1).getTableCells(); tableCellsq.get(0).setText("第二行第一列的数据:A发劵规则"); tableCellsq.get(1).setText("第二行第二列的数据:A发劵规则针对5星级用户"); XWPFParagraph text3 = doc.createParagraph(); XWPFRun runText7=text3.createRun(); runText7.setText("负责人:zhangsan"); runText7.setFontSize(15); XWPFParagraph text8 = doc.createParagraph(); XWPFRun runText8=text8.createRun(); runText8.setText("负责人电话:12345678921"); runText8.setFontSize(15); FileOutputStream out = new FileOutputStream("C:\\User\\Desktop\\test.docx"); doc.write(out); System.out.println(1); out.close(); } }
试试其它关键字
poi导出word
同语言下
.
List 切割成几份 工具类
.
一行一行读取txt的内容
.
Java PDF转换成图片并输出给前台展示
.
java 多线程框架
.
double类型如果小数点后为零则显示整数否则保留两位小
.
将图片转换为Base64字符串公共类抽取
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
JAVA 月份中的第几周处理 1-7属于第一周 依次类推 29-
.
java计算两个经纬度之间的距离
.
输入时间参数计算年龄
可能有用的
.
实现测量程序运行时间及cpu使用时间
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
擎宇
贡献的其它代码
(
8
)
.
实现多字段匹配一个关键字查询语句
.
网页不满屏幕高度时,footer始终在底部显示
.
改变图片尺寸(压缩),Image Resize
.
清空指定页面上所有的控件内容
.
最大限度解决IE8兼容问题,只需要一句话
.
动态改变文字颜色和尺寸
.
poi导出word
.
显示数据碎片的SQL
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3