28 Nisan 2016 Perşembe

CipherInputStream Sınıfı

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