All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.poi.hpsf.examples.ReadCustomPropertySets Maven / Gradle / Ivy

There is a newer version: 5.2.5
Show newest version
/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
==================================================================== */

package org.apache.poi.hpsf.examples;

import java.io.File;
import java.io.IOException;
import java.util.List;

import org.apache.poi.hpsf.NoPropertySetStreamException;
import org.apache.poi.hpsf.Property;
import org.apache.poi.hpsf.PropertySet;
import org.apache.poi.hpsf.PropertySetFactory;
import org.apache.poi.hpsf.Section;
import org.apache.poi.poifs.eventfilesystem.POIFSReader;
import org.apache.poi.poifs.eventfilesystem.POIFSReaderEvent;
import org.apache.poi.poifs.eventfilesystem.POIFSReaderListener;
import org.apache.poi.util.HexDump;

/**
 * 

Sample application showing how to read a document's custom property set. * Call it with the document's file name as command-line parameter.

* *

Explanations can be found in the HPSF HOW-TO.

*/ public final class ReadCustomPropertySets { private ReadCustomPropertySets() {} /** *

Runs the example program.

* * @param args Command-line arguments (unused). * @throws IOException if any I/O exception occurs. */ public static void main(final String[] args) throws IOException { final String filename = args[0]; POIFSReader r = new POIFSReader(); /* Register a listener for *all* documents. */ r.registerListener(new MyPOIFSReaderListener()); r.read(new File(filename)); } static class MyPOIFSReaderListener implements POIFSReaderListener { @Override public void processPOIFSReaderEvent(final POIFSReaderEvent event) { PropertySet ps; try { ps = PropertySetFactory.create(event.getStream()); } catch (NoPropertySetStreamException ex) { out("No property set stream: \"" + event.getPath() + event.getName() + "\""); return; } catch (Exception ex) { throw new RuntimeException ("Property set stream \"" + event.getPath() + event.getName() + "\": " + ex); } /* Print the name of the property set stream: */ out("Property set stream \"" + event.getPath() + event.getName() + "\":"); /* Print the number of sections: */ final long sectionCount = ps.getSectionCount(); out(" No. of sections: " + sectionCount); /* Print the list of sections: */ List
sections = ps.getSections(); int nr = 0; for (Section sec : sections) { /* Print a single section: */ out(" Section " + nr++ + ":"); String s = hex(sec.getFormatID().getBytes()); s = s.substring(0, s.length() - 1); out(" Format ID: " + s); /* Print the number of properties in this section. */ int propertyCount = sec.getPropertyCount(); out(" No. of properties: " + propertyCount); /* Print the properties: */ Property[] properties = sec.getProperties(); for (Property p : properties) { /* Print a single property: */ long id = p.getID(); long type = p.getType(); Object value = p.getValue(); out(" Property ID: " + id + ", type: " + type + ", value: " + value); } } } } private static void out(final String msg) { System.out.println(msg); } private static String hex(final byte[] bytes) { return HexDump.dump(bytes, 0L, 0); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy