]> source.dussan.org Git - poi.git/commitdiff
POI-54722 table text in ppt files
authorTim Allison <tallison@apache.org>
Fri, 27 Sep 2013 15:45:55 +0000 (15:45 +0000)
committerTim Allison <tallison@apache.org>
Fri, 27 Sep 2013 15:45:55 +0000 (15:45 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1526960 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hslf/extractor/PowerPointExtractor.java
src/scratchpad/testcases/org/apache/poi/hslf/extractor/TestExtractor.java
test-data/slideshow/54722.ppt [new file with mode: 0644]

index 6610cde2cecbf949b3c3e791e66168ca3b7f19d6..f416d639079c67bf13ffa1c39244ec57da66156d 100644 (file)
@@ -252,6 +252,12 @@ public final class PowerPointExtractor extends POIOLE2TextExtractor {
                                // Slide text
                 textRunsToText(ret, slide.getTextRuns());
 
+                // Table text
+                for (Shape shape : slide.getShapes()){
+                    if (shape instanceof Table){
+                        extractTableText(ret, (Table)shape);
+                    }
+                }
                 // Slide footer, if set
                                if (hf != null && hf.isFooterVisible() && hf.getFooterText() != null) {
                                        ret.append(hf.getFooterText() + "\n");
@@ -306,6 +312,23 @@ public final class PowerPointExtractor extends POIOLE2TextExtractor {
                return ret.toString();
        }
 
+    private void extractTableText(StringBuffer ret, Table table) {
+        for (int row = 0; row < table.getNumberOfRows(); row++){
+            for (int col = 0; col < table.getNumberOfColumns(); col++){
+                TableCell cell = table.getCell(row, col);
+                //defensive null checks; don't know if they're necessary
+                if (cell != null){
+                    String txt = cell.getText();
+                    txt = (txt == null) ? "" : txt;
+                    ret.append(txt);
+                    if (col < table.getNumberOfColumns()-1){
+                        ret.append("\t");
+                    }
+                }
+            }
+            ret.append('\n');
+        }
+    }
     private void textRunsToText(StringBuffer ret, TextRun[] runs) {
         if (runs==null) {
             return;
index b0cf1c3bd0d90e0742f2e84c474d0ee049a5ce34..ab1076c4583950a8c27273a91d38d364b8a39136 100644 (file)
@@ -367,4 +367,23 @@ public final class TestExtractor extends POITestCase {
           assertEquals(expectText, extractor.getText());
        }
     }
+
+    public void testTable() throws Exception{
+        ppe = new PowerPointExtractor(slTests.openResourceAsStream("54111.ppt"));
+        String text = ppe.getText();
+        String target = "TH Cell 1\tTH Cell 2\tTH Cell 3\tTH Cell 4\n"+
+                         "Row 1, Cell 1\tRow 1, Cell 2\tRow 1, Cell 3\tRow 1, Cell 4\n"+   
+                         "Row 2, Cell 1\tRow 2, Cell 2\tRow 2, Cell 3\tRow 2, Cell 4\n"+
+                         "Row 3, Cell 1\tRow 3, Cell 2\tRow 3, Cell 3\tRow 3, Cell 4\n"+
+                         "Row 4, Cell 1\tRow 4, Cell 2\tRow 4, Cell 3\tRow 4, Cell 4\n"+ 
+                         "Row 5, Cell 1\tRow 5, Cell 2\tRow 5, Cell 3\tRow 5, Cell 4\n";
+        assertTrue(text.contains(target));
+
+        ppe = new PowerPointExtractor(slTests.openResourceAsStream("54722.ppt"));
+        text = ppe.getText();
+
+        target = "this\tText\tis\twithin\ta\n"+
+                "table\t1\t2\t3\t4";
+        assertTrue(text.contains(target));
+    }    
 }
diff --git a/test-data/slideshow/54722.ppt b/test-data/slideshow/54722.ppt
new file mode 100644 (file)
index 0000000..c62a60b
Binary files /dev/null and b/test-data/slideshow/54722.ppt differ