Giriş
Şu satırı dahil ederiz.
Şöyle yaparız.
Şöyle yaparız.
Şu satırı dahil ederiz.
import static org.apache.commons.codec.binary.Base64;
decodeBase64 metodu - String to byte[]Şöyle yaparız.
import static org.apache.commons.codec.binary.Base64.decodeBase64;
String str1 = "j-FH-F9__CIiwyg0o3A2mKflRBnxZSMwktDJQyvRevc";
byte[] b1 = decodeBase64(str1);
encodeBase64String metodu - byte[] to StringŞöyle yaparız.
byte[] encValue = ...
String encryptedValue = Base64.encodeBase64String(encValue);
Hiç yorum yok:
Yorum Gönder