点击上方 "程序员小乐"关注公众号, 星标或置顶一起成长
每天凌晨00点00分, 第一时间与你相约
每日英文
Destiny decides who enters your life, but you get to decide who stays.
谁走进你的生命,是由命运决定;谁停留在你生命中,却是由你自己决定。
每日掏心话
人终将会变老,事物也随之变更,很多时候,一个人发现自己爱上了一个人,都是在跟他分别的时候。
来自:E-iceblue | 责编:乐乐
链接:cnblogs.com/Yesi/p/11691132.html
程序员小乐(ID:study_tech)第 673 次推文 图片来自网络
正文
本文将对如何在Java程序中操作Word表格作进一步介绍。操作要点包括
如何在Word中创建嵌套表格、
对已有表格添加行或者列
复制已有表格中的指定行或者列
对跨页的表格可设置是否禁止跨页断行
创建表格,包括添加数据、插入表格、合并单元格、设置表格样式、单元格居中、单元格背景色,单元格字体样式等设置,可参考这篇文章里的内容。
Jar文件可通过官网下载jar文件包,下载后,解压文件,将lib文件夹下的Spire.Doc.jar导入Java程序;也可以在maven项目中通过maven仓库安装导入。
嵌套表格效果:
1. 添加行
import com.spire.doc.*; public class AddRow { public static void main(String[] args){ //加载测试文档 Document doc = new Document(); doc.loadFromFile("sample.docx"); //获取表格 Section section = doc.getSections().get(0); Table table = section.getTables().get(0); table.addRow();//默认在表格最下方插入一行 //table.getRows().insert(2,table.addRow());//在表格中第3行插入一行 //table.addRow(4);//默认在表格最下方添加4个单元格 //table.addRow(true,2);//带格式在最后一行添加2个单元格 //table.addRow(false,2);//不带格式在最后一行添加2个单元格 //保存文档 doc.saveToFile("addrow.docx",FileFormat.Docx_2013); doc.dispose(); } }表格行添加效果:
2. 添加列
import com.spire.doc.*; import com.spire.doc.documents.BorderStyle; import java.awt.*; public class AddColumn { public static void main(String[] args){ //加载测试文档 Document doc = new Document(); doc.loadFromFile("sample.docx"); //获取表格 Section section = doc.getSections().get(0); Table table = section.getTables().get(0); //获取表格单元格宽度及类型 float width = table.get(0,0).getWidth(); CellWidthType type = table.get(0,0).getCellWidthType(); //遍历表格每一行 for (int i = 0; i < table.getRows().getCount(); i++) { TableRow row = table.getRows().get(i);//获取表格每一行 Color color = row.getCells().get(0).getCellFormat().getBackColor();//获取表格单元格背景色 //基于表格每行,在最后添加一个单元格,并设置单元格格式 TableCell cell = row.addCell(true);//默认在最后一列添加单元格 cell.setWidth(width); cell.setCellWidthType(type); cell.getCellFormat().getBorders().setBorderType(BorderStyle.Single); cell.getCellFormat().setBackColor(color); //如需在指定位置插入列,基于以上代码并增加下面一行代码即可 //row.getCells().insert(2,cell);//插入一列作为第三列 } //保存文档 doc.saveToFile("addcolumn.docx", FileFormat.Docx_2013); doc.dispose(); } }表格列添加效果:
表格行复制效果:
2. 复制列
import com.spire.doc.*; public class CopyColumn { public static void main(String[] args) { //加载测试文档 Document doc = new Document(); doc.loadFromFile("test.docx"); //获取表格 Section section = doc.getSections().get(0); Table table =section.getTables().get(0); //遍历表格每行 for (int i = 0; i < table.getRows().getCount(); i++) { //复制表格中每行的最后一个单元格,复制 TableRow row = table.getRows().get(i); TableCell cell = (TableCell) row.getCells().getLastItem().deepClone(); //row.getCells().add(cell);//默认在每行最后添加复制后的单元格 row.getCells().insert(2,cell);//在指定位置插入复制后的单元格 } //保存文档 doc.saveToFile("CopyColumn1.docx",FileFormat.Docx_2013); doc.dispose(); } }表格列复制效果:
这里通过两种方式来设置防止表格跨页出现断行的效果,供参考。
1. 设置属性禁止跨页断行
import com.spire.doc.*; public class PreventPagebreak { public static void main(String[]args){ //加载测试文档 Document doc= new Document("test.docx"); //获取表格 Table table = doc.getSections().get(0).getTables().get(0); //设置表格是否分页断行 table.getTableFormat().isBreakAcrossPages(false); //保存文档 doc.saveToFile("result.docx",FileFormat.Docx_2013); } }2. 保持表格内容在同一页面
欢迎在留言区留下你的观点,一起讨论提高。如果今天的文章让你有新的启发,学习能力的提升上有新的认识,欢迎转发分享给更多人。
猜你还想看