我不幸的是对docx4j很新,我试图找出如何检查我所拥有的模板中的复选框。 我尝试使用Xpaths并以这种方式获取Node但是我不确定我是否正确,即使我管理得到正确的节点我不太确定如何正确地更改值,替换我设法弄清楚的文本但我没有想出了改变一个属性值。
检查document.xml我找到了Checkbox的名称及其拥有的属性
<w:fldChar w:fldCharType="begin">
<w:ffData><w:name w:val="Kontrollkästchen1"/>
<w:enabled/>
<w:calcOnExit w:val="0"/>
<w:checkBox>
<w:sizeAuto/>
<w:default w:val="0"/>
</w:checkBox>
我尝试过不同的Xpaths前言,例如: // ffData [@名称= 'Kontrollkästchen1'] /复选框
这会找到我想要的节点吗?如果没有,我怎样才能获得节点并正确更改属性?
谢谢 马格努斯
答案 0 :(得分:2)
如果您使用的是XPath,则需要考虑名称空间。
使用XPathQuery示例,您可以提供它:
String xpath = "//w:fldChar[./w:ffData/w:checkBox]";
(或变体,取决于您要选择的三个节点中的哪一个)
另一种方法是遍历文档,其中有TraversalUtils。
这两种方法都在docx4j的入门文档中进行了解释。
如前所述,如果您修改了对象,则无法依赖Sun / Oracle JAXB XPath。
因此,手动导线通常可以更好。
这是一个如何以这种方式做到的例子。
package org.docx4j.samples;
import java.util.ArrayList;
import java.util.List;
import org.docx4j.TraversalUtil;
import org.docx4j.XmlUtils;
import org.docx4j.TraversalUtil.CallbackImpl;
import org.docx4j.openpackaging.packages.WordprocessingMLPackage;
import org.docx4j.openpackaging.parts.WordprocessingML.MainDocumentPart;
import org.docx4j.wml.FldChar;
public class TraverseFind {
/**
* Example of how to find an object in document.xml
* via traversal (as opposed to XPath)
*
*/
public static void main(String[] args) throws Exception {
String inputfilepath = System.getProperty("user.dir") + "/checkbox.docx";
WordprocessingMLPackage wordMLPackage = WordprocessingMLPackage.load(new java.io.File(inputfilepath));
MainDocumentPart documentPart = wordMLPackage.getMainDocumentPart();
Finder finder = new Finder(FldChar.class);
new TraversalUtil(documentPart.getContent(), finder);
System.out.println("got " + finder.results.size() + " of type " + finder.typeToFind.getName() );
for (Object o : finder.results) {
Object o2 = XmlUtils.unwrap(o);
// this is ok, provided the results of the Callback
// won't be marshalled
if (o2 instanceof org.docx4j.wml.Text) {
org.docx4j.wml.Text txt = (org.docx4j.wml.Text)o2;
System.out.println( txt.getValue() );
} else {
System.out.println( XmlUtils.marshaltoString(o, true, true));
}
}
}
public static class Finder extends CallbackImpl {
protected Class<?> typeToFind;
protected Finder(Class<?> typeToFind) {
this.typeToFind = typeToFind;
}
public List<Object> results = new ArrayList<Object>();
@Override
public List<Object> apply(Object o) {
// Adapt as required
if (o.getClass().equals(typeToFind)) {
results.add(o);
}
return null;
}
}
}
我完成这些示例的方式,他们都得到了org.docx4j.wml.FldChar对象。
从那里,你会发现你的CTFFCheckBox在getFfData()里面.getNameOrEnabledOrCalcOnExit()
如果你想要的只是复选框,那么你可以调整任何一个例子来获取它。那会更简单。