Android 读取assets文件夹中json文件
Posted TeddyYan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 读取assets文件夹中json文件相关的知识,希望对你有一定的参考价值。
这里要介绍一下 读取assets文件夹中json文件 转换成list 集合
只接看代码 非常简单
public static List<State> getStates(Context context) { InputStream is = null; ByteArrayOutputStream bos = null; try { is = context.getAssets().open("area.json"); bos = new ByteArrayOutputStream(); byte[] bytes = new byte[4 * 1024]; int len = 0; while ((len = is.read(bytes)) != -1) { bos.write(bytes, 0, len); } final String json = new String(bos.toByteArray()); final Areas areas = JSON.parseObject(json, Areas.class); final List<State> states = areas.getStates(); return states; } catch (Exception e) { e.printStackTrace(); } finally { try { if (is != null) is.close(); if (bos != null) bos.close(); } catch (IOException e) { Log.e(TAG, "getStates", e); } } return null; }
对应json 写好实体类 就OK了
以上是关于Android 读取assets文件夹中json文件的主要内容,如果未能解决你的问题,请参考以下文章