首页 > 代码库 > Android 读取assets文件夹中json文件
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文件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。