Giriş
Şu satırı dahil ederiz.
Şöyle yaparız.
Şöyle yaparız.
Şu satırı dahil ederiz.
import javax.crypto.CipherInputStream;
constructorŞöyle yaparız.
try(FileInputStream fis = new FileInputStream(...)){
Cipher cipher = ...;
try(CipherInputStream cis = new CipherInputStream(fis, cipher)){
...
}
}
read metoduŞöyle yaparız.
byte buf[] = new byte[4096];
while((read = cis.read(buf)) != -1) //reading from file
...
}
Hiç yorum yok:
Yorum Gönder