Example usage for org.apache.poi.hslf.extractor QuickButCruddyTextExtractor QuickButCruddyTextExtractor

List of usage examples for org.apache.poi.hslf.extractor QuickButCruddyTextExtractor QuickButCruddyTextExtractor

Introduction

In this page you can find the example usage for org.apache.poi.hslf.extractor QuickButCruddyTextExtractor QuickButCruddyTextExtractor.

Prototype

public QuickButCruddyTextExtractor(POIFSFileSystem poifs) throws IOException 

Source Link

Document

Creates an extractor from a POIFS Filesystem

Usage

From source file:axiom.util.TextExtractor.java

License:Open Source License

public static String msPowerPointExtractor(InputStream is) throws Exception {
    QuickButCruddyTextExtractor qbcte = new QuickButCruddyTextExtractor(is);
    return qbcte.getTextAsString();
}