我正在尝试使用tblPr元素定位表,其属性为tblpX和tblpY。我的问题是当我打开.docx文件时,表位于页面的左上角,忽略了tblpX和tblPY值。您可以找到.docx表如何定位here或here的详细信息。它应该看起来像:
<w:tbl>
<w:tblPr>
<w:tblpPr w:vertAnchor="text" w:tblpY="200" />
</w:tblPr>
…
</w:tbl>
Apache POI不提供“tblpY”和“tblpX”属性,因此我认为添加此属性的唯一方法是手动。这是我的代码:
public static XWPFTable createTable(XWPFDocument doc) {
//CTTbl ctTable = CTTbl.Factory.newInstance();
XWPFTable table = doc.createTable();//new XWPFTable(ctTable, doc, 0, 0);
XmlObject x = (XmlObject) table.getCTTbl().getTblPr();
XmlCursor c = x.newCursor(); // Create a cursor at the element
c.toNextToken(); // Move cursor after the tblPr tag
c.insertElement("tblPr", "http://schemas.openxmlformats.org/wordprocessingml/2006/main");
c.toPrevSibling(); //Now go to the tblPr
XmlObject x2 = c.getObject(); //Get the tblPr object
c.dispose();
c = x2.newCursor(); //Now our cursor is inside the second tblPr
c.toNextToken();
c.insertAttributeWithValue("tblpX", "http://schemas.openxmlformats.org/wordprocessingml/2006/main", "500");
c.insertAttributeWithValue("tblpY", "http://schemas.openxmlformats.org/wordprocessingml/2006/main", "500");
c.dispose();
XWPFTableRow tr = table.getRow(0);
XWPFTableCell cell = tr.getCell(0);
cell.setText("some text");
return table;
}
我打开了.docx并验证了以下内容是在document.xml
中<w:tbl>
<w:tblPr>
<w:tblPr w:tblpX="500" w:tblpY="500"/>
<w:tblW w:w="0" w:type="auto"/>
<w:tblBorders>
<w:top w:val="single"/>
<w:left w:val="single"/>
<w:bottom w:val="single"/>
<w:right w:val="single"/>
<w:insideH w:val="single"/>
<w:insideV w:val="single"/>
</w:tblBorders>
</w:tblPr>
<w:tr>
<w:tc>
<w:p>
<w:r>
<w:t>some text</w:t>
</w:r>
</w:p>
</w:tc>
</w:tr>
</w:tbl>
那么我做错了什么?为什么桌子还在左上角?为什么microsoft字忽略了我的tblpX和tblpY值?
答案 0 :(得分:1)
tblPr中的子节点应该是: tblpPr NOT tblPr!
&#34; p&#34;的语法的单一差异把我扔了。
无论如何,希望有人可以从中吸取教训。例如。没有StackOverflow解决方案如何使用Apache POI绝对定位表...直到现在mwahahaha