Giriş
Şu satırı dahil ederiz.
Şöyle yaparız.
Şöyle yaparız.
Şu satırı dahil ederiz.
import javax.crypto.CipherOutputStream;
constructorŞöyle yaparız.
Cipher cipher = ...;
try(FileOutputStream fos = new FileOutputStream(...)){
try(CipherOutputStream cos = new CipherOutputStream(fos, cipher)){
...
}
}
}
write metoduŞöyle yaparız.
byte buf[] = ...;
cos.write(buf);
Hiç yorum yok:
Yorum Gönder