gpt4 book ai didi

android - 从资源创建文件对象

转载 作者:行者123 更新时间:2023-12-04 00:11:15 27 4
gpt4 key购买 nike

我有一个位于/res/introduced.xml 的文件。我知道我可以通过两种方式访问​​它:

1) R.introduced 资源

2) 一些绝对/相对 URI

我正在尝试创建一个 File 对象,以便将其传递给特定的类。我该怎么做?

最佳答案

这就是我最终做的:

try{
InputStream inputStream = getResources().openRawResource(R.raw.some_file);
File tempFile = File.createTempFile("pre", "suf");
copyFile(inputStream, new FileOutputStream(tempFile));

// Now some_file is tempFile .. do what you like
} catch (IOException e) {
throw new RuntimeException("Can't create temp file ", e);
}

private void copyFile(InputStream in, OutputStream out) throws IOException {
byte[] buffer = new byte[1024];
int read;
while((read = in.read(buffer)) != -1){
out.write(buffer, 0, read);
}
}

关于android - 从资源创建文件对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34709210/

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