I am using Bing Search API to my applet application and I used this code:
byte[] accountKeyBytes = Base64.encodeBase64((accountKey + ":" + accountKey).getBytes());
String accountKeyEnc = new String(accountKeyBytes);
I used commons-codec-1.7.jar
and does not recognized the encodeBase64
.
I have try everything, I have place the jar file through the project directory through source file.