gpt4 book ai didi

android - 在android中将视频文件转换为字节数组

转载 作者:行者123 更新时间:2023-11-30 04:45:52 24 4
gpt4 key购买 nike

在我的 android 应用程序中,我正在录制并将文件保存在 sdcard 中。现在我想将这个保存的文件转换为字节数组并将其发送到服务器。

谁能告诉我如何将视频文件转换为字节数组

请转发您的宝贵建议。

提前致谢:)

最佳答案

试试这个:

String strFile=null;
File file=new File(pathOnSdCard);
try {
byte[] data = FileUtils.readFileToByteArray(file);//Convert any file, image or video into byte array
strFile = Base64.encodeToString(data, Base64.NO_WRAP);//Convert byte array into string
} catch (IOException e) {
e.printStackTrace();
}
return strFile;
}

关于android - 在android中将视频文件转换为字节数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4980264/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com