android - 从资源创建文件对象

标签 android file resources uri

我有一个位于/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/

相关文章:

javascript - 替代 javascript 事件中的 `touchmove`

java - Firebase不会触发数据更改事件

android - 使用动画时 Trespass ViewGroup 的 Limits

file - 如何从文件创建 ole 对象 - Ms-access

java - 如何将数据附加到文件?

javascript - 在 jquery 中获取输入类型文件的 event.result

android - 添加渐进式网络应用商店/应用商店

java,资源加载失败: unable to resolve file:/my-jar. jar!/folder/my-file

resources - 您是否使用任何工具来管理技术债务?

c# - 如何检查 WPF 资源是否存在?