decode « decimal « Java Data Type Q&A





1. Java code or lib to decode a binary-coded decimal (BCD) from a String    stackoverflow.com

I have a string consisting of 1's ('\u0031') and 0's('\u0030') that represents a BCD value. Specifically, the string is 112 characters worth of 1's and 0's and I need to extract either ...

2. encode and decode base64 string to decimal string coddec    stackoverflow.com

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?