问题

我的项目目录结构如下,在assets目录下有一张jpg图片,在res/drawable下也有一张jpg图片。想在MainActivity中读取出这两张图片,转换成bitmap对象。在网上试了很多方法,最终发现3种方法是有效的。

75d7d1af6f1e5253c5b6397728d83b5a.png

解决方法

assets文件夹下图片读取方法:

//读取资源文件生成bitmap对象

InputStream is = null;

Bitmap b5 = null;

try {

AssetManager assetManager = getAssets();

is=assetManager.open("image_1.jpg"); //直接写assets文件夹下的图片名就可以

b5 = BitmapFactory.decodeStream(is);

if(b5 != null && !b5.isRecycled()){

System.out.println("bitmap ok!!!!!!!!!!!!!!");

}

}

catch (IOException e){

e.printStackTrace();

}

注意:单步调试时,b5的值是null代表读取失败,是双引号的话表示读取成功。

res/drawable文件夹下图片读取方法

下面b3和b4的读取方法都可以。

Context context = this.getApplicationContext();

Bitmap b3=BitmapFactory.decodeResource(context.getResources(), R.drawable.image_1); //image_1是图片名

Bitmap b4=BitmapFactory.decodeStream(getClass().getResourceAsStream("/res/drawable/image_1.jpg"));

assets文件夹新建方法

注意:assets文件夹必须新建在main文件夹下。

35ea129f1af69d5afa075e6330b98cf8.png

错误读取方法

最开始的几种读取方式如下,都报错了。

b6812ce2d532c37c91e1f6f0f2742c16.png

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐