Android:将图像存储到项目目录(文件)中?

时间:2010-12-02 15:50:33

标签: android image file directory store

我想将我的Bitmap图像存储到项目目录中。如何访问项目文件夹或项目文件夹的地址是什么?

1 个答案:

答案 0 :(得分:11)

您必须将图像放在res/drawable文件夹中。然后,您可以使用:R.drawable.name_of_imagename_of_image.pngname_of_image.jpg)来访问它们。

如果您想以原始名称访问它们,最好将它们保存在assets文件夹中。然后,您可以使用AssetManager

访问它们
AssetManager am = getResources().getAssets();
try {
    InputStream is = am.open("image.png");
    // use the input stream as you want
} catch (IOException e) {
    e.printStackTrace();
}

如果要保存以编程方式创建的图像,可以执行以下操作:

try {
       FileOutputStream out = new FileOutputStream(context.getFilesDir().getAbsolutePath()+"/imagename.png");
       bmp.compress(Bitmap.CompressFormat.PNG, 100, out);
} catch (Exception e) {
       e.printStackTrace();
}

您无法将其保存到项目目录中。我建议你阅读有关android包如何工作的文档,因为你似乎不明白。