com.github.revenuemonster.util.Decode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of RevenueMonsterOpenAPI Show documentation
Show all versions of RevenueMonsterOpenAPI Show documentation
This is an Java SDK that maps some of the RESTful methods of Open API that are documented at doc.revenuemonster.my
The newest version!
package com.github.revenuemonster.util;
import org.apache.commons.codec.binary.Base64;
public class Decode {
public static String Base64Decode(String base64EncodedData) {
byte[] decoded = Base64.decodeBase64(base64EncodedData.getBytes());
return new String(decoded);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy