我有一个应用程序,我正在使用该代码来解密已加密的文件。文件位置是“/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];包含输入字节数组。
2012-12-04
Maddy
+0
很明显,这不是真正的代码。 –
+0
此代码创建问题:results = cipher.doFinal(abc); –