从资源创建File对象

时间:2016-01-10 18:29:39

标签: android file resources uri

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

1)R.introduced resource

2)一些绝对/相对URI

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

2 个答案:

答案 0 :(得分:3)

这就是我最终做的事情:

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);
    }
}

答案 1 :(得分:0)

  

一些绝对/相对URI

Android支持的东西很少。

  

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

你没有。资源不存在于Android设备的文件系统上作为文件。将类修改为不需要文件,而是使用资源ID或XmlResourceParser