Sfoglia il codice sorgente

[github-153] XWPFParagraph: easier way to create a link. Thanks to Thibaut Cuvelier. This closes #153

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1863433 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_4_1_1
PJ Fanning 4 anni fa
parent
commit
ea58359b7c

+ 10
- 0
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java Vedi File

@@ -273,6 +273,7 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
// Get the hyperlinks
// TODO: make me optional/separated in private function
try {
hyperlinks = new ArrayList<>();
for (PackageRelationship rel : getPackagePart().getRelationshipsByType(XWPFRelation.HYPERLINK.getRelation())) {
hyperlinks.add(new XWPFHyperlink(rel.getId(), rel.getTargetURI().toString()));
}
@@ -410,6 +411,15 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
}
}

// If the link was not found, rebuild the list (maybe a new link was added into the document) and check again.
initHyperlinks();
for (XWPFHyperlink link : hyperlinks) {
if (link.getId().equals(id)) {
return link;
}
}

// Link still not there? Giving up.
return null;
}


+ 23
- 0
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFParagraph.java Vedi File

@@ -1440,6 +1440,29 @@ public class XWPFParagraph implements IBodyElement, IRunBody, ISDTContents, Para
return xwpfRun;
}

/**
* Appends a new hyperlink run to this paragraph
*
* @return a new hyperlink run
*/
public XWPFHyperlinkRun createHyperlinkRun(String uri) {
// Create a relationship ID for this link.
String rId = getPart().getPackagePart().addExternalRelationship(
uri, XWPFRelation.HYPERLINK.getRelation()
).getId();
// Create the run.
CTHyperlink ctHyperLink = getCTP().addNewHyperlink();
ctHyperLink.setId(rId);
ctHyperLink.addNewR();
// Append this run to the paragraph.
XWPFHyperlinkRun link = new XWPFHyperlinkRun(ctHyperLink, ctHyperLink.getRArray(0), this);
runs.add(link);
iruns.add(link);
return link;
}

/**
* insert a new Run in RunArray
*

+ 12
- 0
src/ooxml/testcases/org/apache/poi/xwpf/usermodel/TestXWPFDocument.java Vedi File

@@ -185,6 +185,18 @@ public final class TestXWPFDocument {
doc.close();
}

@Test
public void testAddHyperlink() throws IOException {
XWPFDocument doc = XWPFTestDataSamples.openSampleDocument("SampleDoc.docx");
XWPFParagraph p = doc.createParagraph();
XWPFHyperlinkRun h = p.createHyperlinkRun("http://poi.apache.org/");
h.setText("Apache POI");

assertEquals("http://poi.apache.org/", h.getHyperlink(doc).getURL());
assertEquals(p.getRuns().size(), 1);
assertEquals(p.getRuns().get(0), h);
}

@Test
public void testRemoveBodyElement() throws IOException {
XWPFDocument doc = XWPFTestDataSamples.openSampleDocument("sample.docx");

Loading…
Annulla
Salva