Error: org.apache.commons.codec.binary package does not exist

I added commons-codec-1.4.jar to my project file, and also added

import org.apache.commons.codec.binary.Base64;

But whenever I create it, it gives me an error: the org.apache.commons.codec.binary package does not exist Why does it not work?

+4
source share
1 answer

i also faced the same problem. it was resolved by addingcommons-codec.jar

you can download it from http://mvnrepository.com/artifact/commons-codec/commons-codec/1.7

+8
source

All Articles