I'm going to use sun.misc.BASE64Decoder
's decodeBuffer(String inputString)
in my code. Multiple threads will be calling this function on the same decoder object.
Is this thread safe ?
Thanks and regards, Raj
I'm going to use sun.misc.BASE64Decoder
's decodeBuffer(String inputString)
in my code. Multiple threads will be calling this function on the same decoder object.
Is this thread safe ?
Thanks and regards, Raj
I suggest to use javax.xml.bind.DatatypeConverter.parseBase64Binary(String lexicalXSDBase64Binary)
instead. It's standard Java API, besides it is thread-safe