因为再android中有一个Context.getResources().openRawResource(resid);所以我们可以写一个json文件放在raw中
然后InputStream in = mContext.getResources().openRawResource(resid);,再然后
将BufferedReader br = new BufferedReader(new InputStreamReader(in, "gbk"));---将文件流转换成字符流
将这些个字符流再读出到StringBuffer sjson = new StringBuffer();
String rs = "";
while ((rs = br.readLine()) != null) {
sjson.append(rs);
}
br.close();
再来就可以定义JSONObject resjasonVender = new JSONObject(sjson.toString());
然后就可以直接读写里面的东西了resjasonVender.getInt("");