Package heasarc.db.votable
Class Base64
- java.lang.Object
-
- heasarc.db.votable.Base64
-
public class Base64 extends Object
This class decodes a Base64 encoded string. Taken from Xamin colde.
-
-
Constructor Summary
Constructors Constructor Description Base64()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
append(String input)
Build up the string that will be decoded.ByteArrayInputStream
getAsStream()
Return an InputStream to the decoded datastatic void
main(String[] args)
byte[]
translate()
Translate the encoded stream to a byte array
-
-
-
Method Detail
-
append
public void append(String input)
Build up the string that will be decoded.
-
getAsStream
public ByteArrayInputStream getAsStream()
Return an InputStream to the decoded data
-
translate
public byte[] translate()
Translate the encoded stream to a byte array
-
-