22 Temmuz 2020 Çarşamba

Base64 Sınıfı - Kullanmayın

Giriş
Ş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