gpt4 book ai didi

android - 将 ByteArrayOutputStream 存储在 SD 卡中

转载 作者:行者123 更新时间:2023-11-29 16:14:40 24 4
gpt4 key购买 nike

我正在获取相机的 ByteArrayOutputStream 并希望将此视频流作为文件存储到 SD 卡中,文件扩展名可以是任何内容。

我如何获取流媒体并将其存储到 SD 卡中,因为我正在获取实时摄像机流并希望在 SD 卡中不断更新它。

能否请您提供与相机流相关的示例教程。

谢谢。

最佳答案

private void save(ByteArrayOutputStream os){
FileOutputStream fos;
try {
fos = new FileOutputStream("/sdcard/your_position");
os.writeTo(fos);
os.flush();
fos.flush();
os.close();
fos.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}

希望能解决你的问题。

关于android - 将 ByteArrayOutputStream 存储在 SD 卡中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10443199/

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