Exactly using the above way,I can get the part by the rId.
I still have one question..
- Code: Select all
List<SectionWrapper> swList = wmlpackage.getDocumentModel().getSections();
The above code can't get the sectPr which is in the p tag,can it??
like the following document.xml, it has two sectPr tag.can it get the first sectPr?? I tried ,it can't
- Code: Select all
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<w:document xmlns:ve="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml">
<w:body>
<w:p w:rsidR="00F61F50" w:rsidRDefault="006C1A37" w:rsidP="00FC1C37">
<w:pPr>
<w:ind w:firstLine="420"/>
<w:rPr>
<w:rFonts w:ascii="宋体" w:hAnsi="宋体"/>
<w:sz w:val="24"/>
<w:szCs w:val="24"/>
<w:lang w:eastAsia="zh-TW"/>
</w:rPr>
<w:sectPr w:rsidR="00F61F50" w:rsidSect="00DF1383">
<w:headerReference w:type="default" r:id="rId6"/>
<w:footerReference w:type="default" r:id="rId7"/>
<w:pgSz w:w="11906" w:h="16838"/>
<w:pgMar w:top="1440" w:right="1800" w:bottom="1440" w:left="1800" w:header="851" w:footer="992" w:gutter="0"/>
<w:cols w:space="425"/>
<w:docGrid w:type="lines" w:linePitch="312"/>
</w:sectPr </w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
<w:sz w:val="24"/>
<w:szCs w:val="24"/>
<w:lang w:eastAsia="zh-TW"/>
</w:rPr>
<w:t>the first page</w:t>
</w:r>
</w:p>
<w:p w:rsidR="006121D2" w:rsidRPr="00FC1C37" w:rsidRDefault="00F61F50" w:rsidP="00FC1C37">
<w:pPr>
<w:ind w:firstLine="420"/>
<w:rPr>
<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
<w:sz w:val="24"/>
<w:szCs w:val="24"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
<w:sz w:val="24"/>
<w:szCs w:val="24"/>
</w:rPr>
<w:lastRenderedPageBreak/>
<w:t>the second page</w:t>
</w:r>
</w:p>
<w:sectPr w:rsidR="006121D2" w:rsidRPr="00FC1C37" w:rsidSect="00DF1383">
<w:headerReference w:type="default" r:id="rId8"/>
<w:footerReference w:type="default" r:id="rId9"/>
<w:pgSz w:w="11906" w:h="16838"/>
<w:pgMar w:top="1440" w:right="1800" w:bottom="1440" w:left="1800" w:header="851" w:footer="992" w:gutter="0"/>
<w:cols w:space="425"/>
<w:docGrid w:type="lines" w:linePitch="312"/>
</w:sectPr>
</w:body>
</w:document>