I got rid of the imports for the proprietary classes:
import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;
And used the Base64 class from org.apache.commons.codec.
This only required a few minor changes to the decode/encode calls.
I'm currently a developer for ThoughtWorks and we sponsor a weekly Geek Night in our Dallas office. This blog will cover our activities and random related thoughts I might have.
import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;