我有一個應用程序,我正在使用該代碼來解密已加密的文件。文件位置是「/mnt/sdcard/myfolder/test.mp4」。 test.mp4文件大小約爲20MB。如何在android中加密大視頻文件
當我使用下面的代碼來解密小尺寸的加密文件時,這些文件被成功解密,但是當我試圖解密大視頻文件時,發生了outOfMemoryException
的異常。
下面是代碼:
FileOutputStream fos = new FileOutputStream(outFilePath);
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
byte[] keyBytes= new byte[16];
//byte[] b= key.getBytes(Charset.forName("UTF-8"));
byte[] b= key.getBytes("UTF-8");
Log.i("b",""+b);
int len= b.length;
Log.i("len",""+len);
if (len > keyBytes.length) len = keyBytes.length;
System.arraycopy(b, 0, keyBytes, 0, len);
SecretKeySpec keySpec = new SecretKeySpec(keyBytes, "AES");
IvParameterSpec ivSpec = new IvParameterSpec(keyBytes);
cipher.init(Cipher.DECRYPT_MODE,keySpec,ivSpec);
byte[] results = new byte[cipher.getOutputSize(abc.length)];
try
{
Log.i("output size:", ""+cipher.getOutputSize(abc.length));
***results = cipher.doFinal(abc);***
}
catch (Exception e) {
// TODO: handle exception
Log.e("EXCEPTION:", e.getMessage());
}
fos.write(results);
注:byte[] abc = new byte[64];
包含輸入字節數組。
很明顯,這不是真正的代碼。 –
此代碼創建問題:results = cipher.doFinal(abc); – Maddy