本文介绍如何使用Spire.Doc for Java对Word中的表格设置居中对齐,或靠左或靠右。
import com.spire.doc.Document;
import com.spire.doc.FileFormat;
import com.spire.doc.Table;
import com.spire.doc.documents.RowAlignment;
import com.spire.doc.fields.TextRange;
public class AlignTable {
public static void main(String[] args) {
//创建Document对象
Document doc = new Document();
//添加表格
Table table = doc.addSection().addTable(true);
//设置列宽
table.setColumnWidth(new float[]{100f, 150f});
//设置行数和列数
table.resetCells(3, 2);
//添加内容到单元格并设置字体
TextRange textRange = table.get(0, 0).addParagraph().appendText("产品编号");
textRange.getCharacterFormat().setFontName("宋体");
textRange = table.get(0, 1).addParagraph().appendText("名称");
textRange.getCharacterFormat().setFontName("宋体");
textRange = table.get(1, 0).addParagraph().appendText("T1052");
textRange.getCharacterFormat().setFontName("宋体");
textRange = table.get(1, 1).addParagraph().appendText("YT机械键盘(红轴)");
textRange.getCharacterFormat().setFontName("宋体");
textRange = table.get(2, 0).addParagraph().appendText("T1062");
textRange.getCharacterFormat().setFontName("宋体");
textRange = table.get(2, 1).addParagraph().appendText("WX G41M-P3主板");
textRange.getCharacterFormat().setFontName("宋体");
//将表格居中对齐(或设置为靠左或靠右)
table.getTableFormat().setHorizontalAlignment(RowAlignment.Center);
//保存文档
doc.saveToFile("AlignTable.docx", FileFormat.Docx_2013);
}
}