utilities
Class Base64

java.lang.Object
  |
  +--utilities.Base64

public class Base64
extends java.lang.Object

This was largely nabbed from the Bond project at the Computer Science Department of Purdue (http://bond.cs.purdue.edu). Hopefully I'm not stepping on toes.


Constructor Summary
Base64()
           
 
Method Summary
static byte[] decode(java.lang.String base64)
           
static java.lang.String encode(byte[] raw)
           
static java.lang.String objectToString(java.lang.Object o)
           
static java.lang.Object stringToObject(java.lang.String s)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Base64

public Base64()
Method Detail

encode

public static java.lang.String encode(byte[] raw)

decode

public static byte[] decode(java.lang.String base64)

stringToObject

public static java.lang.Object stringToObject(java.lang.String s)

objectToString

public static java.lang.String objectToString(java.lang.Object o)