hi,all:
i want to replace the footer placeholders with "AAA" ,i find there is not the method getJAXBNodesViaXPath in the FooterPart.class,how can i do?
thanks in advance!
tosswang
It is currently Sat Apr 05, 2025 7:44 am
DocumentSettingsPart dsp = doc.getDocumentSettingsPart();
ObjectFactory factory = new ObjectFactory();
CTDocProtect protection = factory.createCTDocProtect();
protection.setEdit(STDocProtect.COMMENTS);
protection.setEnforcement(true);
protection.setCryptProviderType(STCryptProv.RSA_FULL);
protection.setCryptAlgorithmClass(STAlgClass.HASH);
protection.setCryptAlgorithmType(STAlgType.TYPE_ANY);
protection.setCryptAlgorithmSid(BigInteger.valueOf(4));
protection.setCryptSpinCount(BigInteger.valueOf(100000));
protection.setHash(???);
protection.setSalt(???);
dsp.getJaxbElement().setDocumentProtection(protection);
Total posts 10157 • Total topics 2857 • Total members 2087