Hello,

It seems ponderous to write:

byte b1[] = Base64.encodeBase64(commArea);
byte b2[] = Base64.decodeBase64(commArea);

Why not simply:

byte b1[] = Base64.encode(commArea);
byte b2[] = Base64.decode(commArea);

After all the Base64 class will not have other ??codeBase* methods.

Gary

Reply via email to