I have a base64 string like this = "pCZXOVjpnlePyDk6znZrSw==" i need a encoder/decoder to convert it to decimal string like this = "84587163248712923874"
Is there any codec that do it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
This works like a charm: http://iharder.sourceforge.net/current/java/base64/ |
|||
|
|
|
Base64 encode/decode is part of the default libraries now (finally). Look at the class javax.xml.bind.DatatypeConverter. In there you will find two methods printBase64Binary and parseBase64Binary (along with a few other conversation routines). |
|||
|
|
|
You probably need a two stage process:
16 bytes is too big for a Java long so I assume that you will need a |
|||
|
|