public class

Base64InputStream

extends FilterInputStream
java.lang.Object
   ↳ java.io.InputStream
     ↳ java.io.FilterInputStream
       ↳ org.andengine.util.base64.Base64InputStream

Class Overview

An InputStream that does Base64 decoding on the data read through it.

Summary

[Expand]
Inherited Fields
From class java.io.FilterInputStream
Public Constructors
Base64InputStream(InputStream in, int flags)
An InputStream that performs Base64 decoding on the data read from the wrapped stream.
Public Methods
int available()
void close()
void mark(int readlimit)
boolean markSupported()
int read()
int read(byte[] b, int off, int len)
void reset()
long skip(long n)
[Expand]
Inherited Methods
From class java.io.FilterInputStream
From class java.io.InputStream
From class java.lang.Object
From interface java.io.Closeable

Public Constructors

public Base64InputStream (InputStream in, int flags)

An InputStream that performs Base64 decoding on the data read from the wrapped stream.

Parameters
in the InputStream to read the source data from
flags bit flags for controlling the decoder; see the constants in Base64

Public Methods

public int available ()

public void close ()

Throws
IOException

public void mark (int readlimit)

public boolean markSupported ()

public int read ()

Throws
IOException

public int read (byte[] b, int off, int len)

Throws
IOException

public void reset ()

public long skip (long n)

Throws
IOException