尝试弄清楚如何将数组写入 Android 中的文件流

发布于 2024-11-17 10:34:14 字数 207 浏览 0 评论 0原文

在我的模拟器应用程序中,保存一个 48k 长的文件大约需要 20 秒。现在我正在逐字节保存。使用文件流、FileOutputStream 写入函数。 看起来像 fos.write(cGlobals.board.BitMap[c++]);

我尝试这样做,但收到编译错误,提示参数无效 fos.write(cGlobals.board.BitMap); 有没有比逐字节更好的方法? 特德

In my app on the simulator it takes like 20 secs to save a file 48k long. Right now I'm saving byte by byte. Using a file stream, FileOutputStream write function.
Which looks like fos.write(cGlobals.board.BitMap[c++]);

I tried to do this but got a compile error saying invalid parm
fos.write(cGlobals.board.BitMap);
Is there a better way of doing this then byte by byte?
Ted

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

诗笺 2024-11-24 10:34:14

在 FileOutputStream 周围创建 BufferredOutputStream

FileOutputStream fileOutputStream = new FileOutputStream(.....);
OutputStream bos = new BufferedOutputStream(fileOutputStream, 8192);
try {
   ... do your stuff using bos instead of fileOutputStream
} finally {
   bos.close();
}

Make a BufferredOutputStream around your FileOutputStream

FileOutputStream fileOutputStream = new FileOutputStream(.....);
OutputStream bos = new BufferedOutputStream(fileOutputStream, 8192);
try {
   ... do your stuff using bos instead of fileOutputStream
} finally {
   bos.close();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文