Top "Apache-commons-codec" questions

Apache Commons Codec provides implementations of common encoders and decoders such as Base64, Hex, Phonetic and URLs.

How to decode JWT (Header and Body) in java using Apache Commons Codec?

I am looking decode the following JWT using Apache Commons Codec. How we can do that ? eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ0ZXN0…

apache jwt apache-commons-codec
Apache Commons Codec with Android: could not find method

Today I tried including the apache.commons.codec package in my Android application and couldn't get it running. Android could …

android base64 apache-commons-codec
How to convert sun.misc.BASE64Encoder to org.apache.commons.codec.binary.Base64

I have the following code for sun.misc.BASE64Encoder: BASE64Decoder decoder = new BASE64Decoder(); byte[] saltArray = decoder.decodeBuffer(…

java base64 apache-commons-codec
Base64-encode a file and compress it

My goal is to encode a file and zip it in a folder in java. I have to use the …

java encoding base64 apache-commons-codec
NoSuchMethodError using commonc codec in Android application

I added the commons codec from apache.org (commons-codec-1.4.jar) in eclipse for my Android application following the instruction here. …

android eclipse base64 apache-commons-codec
How efficient is the encoding/decoding algorithm of BASE64 class in Java?

I am about to use an algorithm to encode a variable length but very long String field retrieved from an …

java encoding base64 apache-commons-codec string-decoding
Showing Base64String Image with Thymeleaf

I am storing jpg images in a database (as byte array). I want to avoid dropping onto filesystem before showing …

thymeleaf apache-commons-codec
Base64.decode(privateKeyString, Base64.DEFAULT) in Commons Codec

Using Android's Base64, it's possible to do this: Base64.decode(privateKeyString, Base64.DEFAULT). If you are using Apache's Commons Codec, …

java apache-commons-codec
Maven package org.apache.commons.codec.binary does not exist

Running: mvn compile Generates error: package org.apache.commons.codec.binary does not exist pom.xml includes: <dependency> &…

java maven apache-commons-codec
How to resolve a library conflict (apache commons-codec)

I have a problem with Android libraries. I would like use the method Hex.encodeHexString(Byte Array) from the library …

android apache conflict nosuchmethoderror apache-commons-codec