我需要将视频发送到.net 中的 web 服务,我发送一个字符串 base64 编码,如果视频大约 2MB 或 6 o 7 秒就可以了,但是当我做 Bas.encode[byte[] 时,什么时候更重会导致内存不足错误);
这是我的代码:
videoPath = getRealPathFromURI(fileUri);
File tmpFile = new File(videoPath);
in = null;
in = new BufferedInputStream(new FileInputStream(tmpFile));
bos = new ByteArrayOutputStream();
long tamano = tmpFile.length();
int iTamano = (int) tamano;
byte[] b = new byte[iTamano];
int bytesRead;
while ((bytesRead = in.read(b)) != -1) {
bos.write(b, 0, bytesRead);
}
ficheroAEnviar = bos.toByteArray();
try {
strBase64 = Base64.encode(ficheroAEnviar);
}
catch (Exception e) {
correcto = false;
e.printStackTrace();
}
此行崩溃:strBase64 = Base64.encode(ficheroAEnviar);