Example usage for org.apache.commons.codec.binary Base64InputStream Base64InputStream

List of usage examples for org.apache.commons.codec.binary Base64InputStream Base64InputStream

Introduction

In this page you can find the example usage for org.apache.commons.codec.binary Base64InputStream Base64InputStream.

Prototype

public Base64InputStream(InputStream in, boolean doEncode) 

Source Link

Usage

From source file:org.n52.wps.io.datahandler.generator.AbstractGenerator.java

public InputStream generateBase64Stream(IData data, String mimeType, String schema) throws IOException {
    return new Base64InputStream(generateStream(data, mimeType, schema), true);
}