gpt4 book ai didi

android - Android原始资源文件中的RandomAccessFile

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:18:14 24 4
gpt4 key购买 nike

我尝试从 android 资源目录中的原始资源文件创建 RandomAccessFile 对象,但没有成功。

我只能从原始资源文件中获取输入流对象。

getResources().openRawResource(R.raw.file);

是否可以从原始 Assets 文件创建 RandomAccessFile 对象,或者我是否需要坚持使用输入流?

最佳答案

如果不将中间的所有内容缓冲到内存中,就不可能在输入流中向前和向后查找。这可能会非常昂贵,并且不是用于读取任意大小的(二进制)文件的可扩展解决方案。

你是对的:理想情况下,人们会使用 RandomAccessFile,但从资源中读取会提供一个输入流。上面评论中提到的建议是使用输入流将文件写入SD卡,并从那里随机访问文件。您可以考虑将文件写入临时目录,读取它,并在使用后删除它:

String file = "your_binary_file.bin";
AssetFileDescriptor afd = null;
FileInputStream fis = null;
File tmpFile = null;
RandomAccessFile raf = null;
try {
afd = context.getAssets().openFd(file);
long len = afd.getLength();
fis = afd.createInputStream();
// We'll create a file in the application's cache directory
File dir = context.getCacheDir();
dir.mkdirs();
tmpFile = new File(dir, file);
if (tmpFile.exists()) {
// Delete the temporary file if it already exists
tmpFile.delete();
}
FileOutputStream fos = null;
try {
// Write the asset file to the temporary location
fos = new FileOutputStream(tmpFile);
byte[] buffer = new byte[1024];
int bufferLen;
while ((bufferLen = fis.read(buffer)) != -1) {
fos.write(buffer, 0, bufferLen);
}
} finally {
if (fos != null) {
try {
fos.close();
} catch (IOException e) {}
}
}
// Read the newly created file
raf = new RandomAccessFile(tmpFile, "r");
// Read your file here
} catch (IOException e) {
Log.e(TAG, "Failed reading asset", e);
} finally {
if (raf != null) {
try {
raf.close();
} catch (IOException e) {}
}
if (fis != null) {
try {
fis.close();
} catch (IOException e) {}
}
if (afd != null) {
try {
afd.close();
} catch (IOException e) {}
}
// Clean up
if (tmpFile != null) {
tmpFile.delete();
}
}

关于android - Android原始资源文件中的RandomAccessFile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9335379/

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