我想将我的Bitmap图像存储到项目目录中。如何访问项目文件夹或项目文件夹的地址是什么?
答案 0 :(得分:11)
您必须将图像放在res/drawable
文件夹中。然后,您可以使用:R.drawable.name_of_image
(name_of_image.png
或name_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包如何工作的文档,因为你似乎不明白。