]> source.dussan.org Git - poi.git/commitdiff
add extra output to example
authorPJ Fanning <fanningpj@apache.org>
Thu, 22 Jul 2021 12:36:39 +0000 (12:36 +0000)
committerPJ Fanning <fanningpj@apache.org>
Thu, 22 Jul 2021 12:36:39 +0000 (12:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1891714 13f79535-47bb-0310-9956-ffa450edef68

poi-examples/src/main/java/org/apache/poi/examples/hpsf/ModifyDocumentSummaryInformation.java

index b42b936768fab8f8c4b2912341c0b0bbb5094226..c3f5cf8f22ac51ebcd00cde96abb41f523c08cda 100644 (file)
@@ -15,7 +15,7 @@
    limitations under the License.
 ==================================================================== */
 
-package org.apache.poi.examples.hpsf;
+package com.github.pjfanning.poi.sample;
 
 import java.io.File;
 import java.io.FileNotFoundException;
@@ -98,6 +98,7 @@ public final class ModifyDocumentSummaryInformation {
 
             /* Change the author to "Rainer Klute". Any former author value will
              * be lost. If there has been no author yet, it will be created. */
+            System.out.println("Author is " + si.getAuthor());
             si.setAuthor("Rainer Klute");
             System.out.println("Author changed to " + si.getAuthor() + ".");
 
@@ -120,6 +121,7 @@ public final class ModifyDocumentSummaryInformation {
 
             /* Change the category to "POI example". Any former category value will
              * be lost. If there has been no category yet, it will be created. */
+            System.out.println("Category is " + dsi.getCategory());
             dsi.setCategory("POI example");
             System.out.println("Category changed to " + dsi.getCategory() + ".");