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

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

Introduction

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

Prototype

public String getTextAsString() 

Source Link

Document

Fetches the ALL the text of the powerpoint file, as a single string

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();
}