表格嵌套表格html
行颜色设置的简便方法昨天我们在《使用HTML添加表格3(间距与颜色)——零基础自学网页制作》(目录在结尾)中学习了设置单元格以及其中内容的空间间距和背景颜色。其中添加列向单元格背景颜色只需要修改对应的...
2024.11.20点击上方 "程序员小乐"关注公众号, 星标或置顶一起成长
第一时间与你相约
每日英文
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中创建嵌套表格、
对已有表格添加行或者列
复制已有表格中的指定行或者列
对跨页的表格可设置是否禁止跨页断行
创建表格,包括添加数据、插入表格、合并单元格、设置表格样式、单元格居中、单元格背景色,单元格字体样式等设置,可参考这篇文章里的内容。
使用工具:Free Spire.Doc for Java (免费版)
Jar文件可通过官网下载jar文件包,下载后,解压文件,将lib文件夹下的Spire.Doc.jar导入Java程序;也可以在maven项目中通过maven仓库安装导入。
添加Word嵌套表格
import com.spire.doc.*;import com.spire.doc.documents.*;import com.spire.doc.fields.TextRange;
public class NestedTable { public static void main(String[]args){ //加载测试文档 Document doc = new Document("sample.docx");
//获取指定表格中的单元格,并设置行高、列宽Section sec = doc.getSections().get(0); Table table = sec.getTables().get(0); table.getRows().get(0).setHeight(120f); table.getRows().get(0).getCells().get(0).setWidth(380);
//添加嵌套表格到指定单元格 Table nestedtable = table.get(0,0).addTable(true); nestedtable.getTableFormat().setHorizontalAlignment(RowAlignment.Center);//设置嵌套表格在单元格中的对齐方式 nestedtable.resetCells(4,4);//指定嵌套表格行数、列数 nestedtable.autoFit(AutoFitBehaviorType.Auto_Fit_To_Contents);//设置嵌套表格内容自适应方法 //声明表格数组内容 String[][] data ={ new String[]{"编号","产区","最新型号","生产日期",}, new String[]{"1","A","V2.2.0","2019-06-21"}, new String[]{"2","B","V2.6.1","2019-06-18"}, new String[]{"3","C","V2.6.2","2019-06-14"}, };
//填充数组内容到嵌套表格 for (int i = 0; i < data.length; i++) { TableRow dataRow = nestedtable.getRows().get(i); dataRow.getCells().get(i).setWidth(160); dataRow.setHeight(25); dataRow.setHeightType(TableRowHeightType.Exactly); for (int j = 0; j < data[i].length; j++) { dataRow.getCells().get(j).getCellFormat().setVerticalAlignment(VerticalAlignment.Middle); TextRange range = dataRow.getCells().get(j).addParagraph().appendText(data[i][j]); range.getCharacterFormat().setFontName("楷体"); range.getCharacterFormat().setFontSize(11f); range.getOwnerParagraph().getFormat().setHorizontalAlignment(HorizontalAlignment.Center); } }
//保存文档 doc.saveToFile("nesedtable1.docx",FileFormat.Docx_2010); }}
嵌套表格效果:
在Word表格中添加行或者列
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(); }}
表格列添加效果:
复制Word表格中的行或者列
1. 复制行
import com.spire.doc.*;
public class CopyRow { 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);
//复制第三行,并将复制后的行插入到表格作为第五行 TableRow row = table.getRows().get(2).deepClone(); table.getRows().insert(4,row);
//保存文档 doc.saveToFile("CopyRow.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(); }}
表格列复制效果:
设置Word表格是否禁止跨页断行
这里通过两种方式来设置防止表格跨页出现断行的效果,供参考。
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. 保持表格内容在同一页面
import com.spire.doc.*;import com.spire.doc.documents.Paragraph;
public class PreventPagebreak { public static void main(String[]args){ //加载测试文档 Document doc= new Document("test.docx");
//获取表格 Table table = doc.getSections().get(0).getTables().get(0);
//遍历表格单元格 for (int i = 0;i< table.getRows().getCount();i++) { TableRow rows = table.getRows().get(i); for (int j = 0; j< rows.getCells().getCount(); j++){ for (int z= 0; z < rows.getCells().get(j).getParagraphs().getCount();z++){ Paragraph p = rows.getCells().get(j).getParagraphs().get(z); p.getFormat().setKeepFollow(true);//设置表格内容在同一页显示 } } }
//保存文档 doc.saveToFile("result1.docx",FileFormat.Docx_2013); }}
欢迎在留言区留下你的观点,一起讨论提高。如果今天的文章让你有新的启发,学习能力的提升上有新的认识,欢迎转发分享给更多人。
欢迎各位读者加入程序员小乐技术群,在公众号后台回复“加群”或者“学习”即可。
猜你还想看
阿里、腾讯、百度、华为、京东最新面试题汇集
Spring、Spring MVC、MyBatis 整合文件配置详解,看了都说好!
初级开发者应该从Spring源码中学什么?
Java RESTful 框架的性能比较
关注微信公众号「程序员小乐」,收看更多精彩内容
嘿,你在看吗?
行颜色设置的简便方法昨天我们在《使用HTML添加表格3(间距与颜色)——零基础自学网页制作》(目录在结尾)中学习了设置单元格以及其中内容的空间间距和背景颜色。其中添加列向单元格背景颜色只需要修改对应的...
2024.11.20Hello大家好,我是帮帮。今天跟大家分享一下word嵌套表格技巧,批量表格文件排版打印,复杂工作一键完成。有个好消息!为了方便大家更快的掌握技巧,寻找捷径。请大家点击文章末尾的“了解更多”,在里面找...
2024.11.18在日产工作中,经常要查询是否合格,占比多少,第一和前三有多少,是否合格,这是工作的一部分,刚开始的时候也是每天查询一次,像是任务一样,只要交了就行,但长期的发展来说,我不仅需要以前的数据,还要进行...
2024.11.22大家好,我是小智~有两个表格,sheet2需要根据指定列,在sheet1中查找,并将找到的行中内容,填充到指定的列中,实现方法如下:1、如下两个表格上图为sheet1上图为sheet22、通过shee...
2024.11.20最近suyi酱发现很多的明星都是学建筑或土木的呢!比如我们的男神吴彦祖 刘恺威 林志炫。难道好看的小哥哥都去学土木了?那么今天suyi酱呢,就来一反常态,一本正经的给大家来波技术干货。如何将全站仪的数...
2024.11.20