原生JSON解析

JSONObject:JSON数据封装对象
JSONArray:JSON数据封装数组

布局:

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="net.bwie.jsonobject.MainActivity"> <Button
android:id="@+id/read_file_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="读取文件中的json数据"/> <Button
android:id="@+id/parse_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="解析json数据"/> <TextView
android:id="@+id/result_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"/> </LinearLayout>

Bean:

 package net.bwie.jsonobject;

 import java.util.List;

 public class ShoppingBean {

     private String msg;
private InfoBean info; public String getMsg() {
return msg;
} public void setMsg(String msg) {
this.msg = msg;
} public InfoBean getInfo() {
return info;
} public void setInfo(InfoBean info) {
this.info = info;
} @Override
public String toString() {
return "ShoppingBean{" +
"msg='" + msg + '\'' +
", info=" + info +
'}';
} public static class InfoBean { private int cat_id;
private List<GoodsBean> good;
private boolean url; public int getCat_id() {
return cat_id;
} public void setCat_id(int cat_id) {
this.cat_id = cat_id;
} public List<GoodsBean> getGood() {
return good;
} public void setGood(List<GoodsBean> good) {
this.good = good;
} public boolean isUrl() {
return url;
} public void setUrl(boolean url) {
this.url = url;
} @Override
public String toString() {
return "InfoBean{" +
"cat_id=" + cat_id +
", good=" + good +
", url=" + url +
'}';
} public static class GoodsBean { private long add_time;
private String colorcode;
private String currency_price;
private String description;
private String goods_id;
private String goods_name;
private String thumb; public long getAdd_time() {
return add_time;
} public void setAdd_time(long add_time) {
this.add_time = add_time;
} public String getColorcode() {
return colorcode;
} public void setColorcode(String colorcode) {
this.colorcode = colorcode;
} public String getCurrency_price() {
return currency_price;
} public void setCurrency_price(String currency_price) {
this.currency_price = currency_price;
} public String getDescription() {
return description;
} public void setDescription(String description) {
this.description = description;
} public String getGoods_id() {
return goods_id;
} public void setGoods_id(String goods_id) {
this.goods_id = goods_id;
} public String getGoods_name() {
return goods_name;
} public void setGoods_name(String goods_name) {
this.goods_name = goods_name;
} public String getThumb() {
return thumb;
} public void setThumb(String thumb) {
this.thumb = thumb;
} @Override
public String toString() {
return "GoodsBean{" +
"add_time=" + add_time +
", colorcode='" + colorcode + '\'' +
", currency_price='" + currency_price + '\'' +
", description='" + description + '\'' +
", goods_id='" + goods_id + '\'' +
", goods_name='" + goods_name + '\'' +
", thumb='" + thumb + '\'' +
'}';
}
} } }

Activity:

 /**
* 1、将json文件存在外部存储中,使用IO流读取文件中的数据
* 2、使用JSONObject解析读取出来的数据
*/
public class MainActivity extends AppCompatActivity implements View.OnClickListener { private String mJson = ""; protected Button mReadFileBtn;
protected Button mParseBtn;
protected TextView mResultTv; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.setContentView(R.layout.activity_main);
initView();
} @Override
public void onClick(View view) {
if (view.getId() == R.id.read_file_btn) {
readFile();
} else if (view.getId() == R.id.parse_btn) {
ShoppingBean shopping = parseJson();
Log.d("1507", "" + shopping);
}
} // 解析JSON数据
// 遇到{}就创建JSONObject,遇到[]就创建JSONArray
private ShoppingBean parseJson() {
ShoppingBean shopping = null;
try {
JSONObject rootObject = new JSONObject(mJson);
shopping = new ShoppingBean(); String msg = rootObject.getString("msg");
shopping.setMsg(msg); JSONObject infoObject = rootObject.getJSONObject("info");
ShoppingBean.InfoBean info = new ShoppingBean.InfoBean();
shopping.setInfo(info); int catId = infoObject.getInt("cat_id");
info.setCat_id(catId); boolean url = infoObject.getBoolean("url");
info.setUrl(url); JSONArray goodsArray = infoObject.getJSONArray("goods");
List<ShoppingBean.InfoBean.GoodsBean> goodsList = new ArrayList<>();
info.setGood(goodsList); for (int i = 0; i < goodsArray.length(); i++) {
JSONObject goodsObject = goodsArray.getJSONObject(i);
ShoppingBean.InfoBean.GoodsBean goods = new ShoppingBean.InfoBean.GoodsBean(); long addTime = goodsObject.getLong("add_time");
goods.setAdd_time(addTime); String colorCode = goodsObject.getString("colorcode");
goods.setColorcode(colorCode); String currencyPrice = goodsObject.getString("currency_price");
goods.setCurrency_price(currencyPrice); String description = goodsObject.getString("description");
goods.setDescription(description); String goodsName = goodsObject.getString("goods_name");
goods.setGoods_name(goodsName); String thumb = goodsObject.getString("thumb");
goods.setThumb(thumb); goodsList.add(goods);
} } catch (Exception e) {
e.printStackTrace();
} return shopping; } // 读取文件中的JSON数据
private void readFile() {
// 根目录
// Environment.getExternalStorageDirectory() // 外部存储公共路径,例如:DCIM,DOWNLOADS等系统提供的文件夹
// Environment.getExternalStoragePublicDirectory(类型) // 外部存储私有路径:Android文件夹
// context.getExternalFilesDir(null) // downloads文件夹路径
String filePath = Environment
.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS)
.getAbsolutePath();
String fileName = "json.txt"; File file = new File(filePath, fileName); // 文件字符输入流
// 字缓符输入冲流
BufferedReader br = null;
try {
br = new BufferedReader(new FileReader(file));
String line = new String();
while ((line = br.readLine()) != null) {
mJson += line;
}
if (mJson != null) {
mResultTv.setText(mJson);
}
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
br.close();
} catch (IOException e) {
e.printStackTrace();
}
}
} private void initView() {
mReadFileBtn = (Button) findViewById(R.id.read_file_btn);
mReadFileBtn.setOnClickListener(MainActivity.this);
mParseBtn = (Button) findViewById(R.id.parse_btn);
mParseBtn.setOnClickListener(MainActivity.this);
mResultTv = (TextView) findViewById(R.id.result_tv);
}
}

权限:

  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

原生JSON解析的更多相关文章

  1. .Net Core 3.0原生Json解析器

    微软官方博客中描述了为什么构造了全新的Json解析器而不是继续使用行业准则Json.Net 微软博客地址:https://devblogs.microsoft.com/dotnet/try-the-n ...

  2. iOS原生JSON解析.

    - (IBAction)accessInterfaceBtnPressed:(id)sender {        NSError *error;    NSString *URL=@"ht ...

  3. iOS SDK原生JSON解析

    - (IBAction)touchReadButton:(id)sender { NSData *jsonData = [[NSData alloc] initWithContentsOfFile:J ...

  4. iOS中JSON解析三方库的比较

    网络数据解析框架 1.  JsonModel 一个 JSON 模型转换库,有着比较简洁的接口.Model 需要继承自 JSONModel. 2.  yyModel yyModel比较轻量(算上.h 只 ...

  5. ios基础篇(二十七)—— Json解析

    一.什么是Json JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式.它基于ECMAScript的一个子集. JSON采用完全独立于语言的文本格式,但是也使 ...

  6. IOS中Json解析的四种方法

    作为一种轻量级的数据交换格式,json正在逐步取代xml,成为网络数据的通用格式. 有的json代码格式比较混乱,可以使用此“http://www.bejson.com/”网站来进行JSON格式化校验 ...

  7. JSON解析方案

    在iOS中,JSON的常见解析方案有4种 第三方框架:JSONKit,SBJson,TouchJSON(性能从左到右,越差) 苹果原生(自带):NSJSONSerialization(性能最好) JS ...

  8. iOS开发之网络数据解析(一)--JSON解析简介

    前言:对服务器请求之后,返回给客户端的数据,一般都是JSON格式或者XML格式(文件下载除外) 本篇随便先讲解JSON解析. 正文: 关于JSON: JSON是一种轻量级的数据格式,一般用于数据交互 ...

  9. Android开源库--Gson谷歌官方json解析库

    官方文档地址:http://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/index.html 官方网站:http://code.go ...

随机推荐

  1. github 最新项目快报

    http://www.open-open.com/github/view/github2016-10-17.html

  2. 封装、构造方法、private、Static与this关键字、main()_Day07

    1:成员变量和局部变量的区别(理解) (1)定义位置区别:      成员变量:定义在类中,方法外.    局部变量:定义在方法中,或者方法声明上.    (2)初始化值的区别:   成员变量:都有默 ...

  3. Redis学习系列四Hash(字典)

    一.简介 Redis中的Hash字典相当于C#中的Hashtable,是一种无序字典,内存存储了很对的键值对,实现上和Hashtable一样,都是"数组+链表"二维结构,都是对关键 ...

  4. makemigrations migrate

    教程 如何重置迁移 (图片:https://www.pexels.com/photo/sky-flying-animals-birds-1209/) Django迁移系统的开发和优化使其能够进行大量迁 ...

  5. [转]php实时输出内容

    b开发中有没有碰到需要适时的将结果输出到浏览器页面而不刷新整个页面的需求呢?当你在处理一个过程需要耗时很长,但你又需要适时的知道程序当前的处理状况的时候,该怎么办呢?下面就分享一下如何使用php及时的 ...

  6. 关于 ASP.NET Web 应用中 async/await 注意问题

    System.NullReferenceException: Object reference not set to an instance of an object. at System.Web.T ...

  7. 公共技术点( View 事件传递)

    转载地址:http://p.codekk.com/blogs/detail/54cfab086c4761e5001b253e 本文为 Android 开源项目源码解析 公共技术点中的 View 事件传 ...

  8. 在Android中调用KSOAP2库访问webservice服务出现的服务端返回AnyType{}

    最近在做毕业设计的时候,涉及到了安卓端访问web service服务端数据库,并返回一个值,当我把web service测试通过后,想写一个简单的安卓测试程序,来实现服务端数据库访问,通过web se ...

  9. 关于SpringBoot中静态资源访问的问题

    第一种方式 : 放在src/main/webapp目录下 第二种方式:放在classpath下(网页存放于static目录下, 默认的"/"指向的是~/resouces/stati ...

  10. 解析BroadcastReceiver之你需要了解的一些东东

    前些天把四大组件之一的Service扯了一遍,今天就要开始谈谈它的弟兄BroadcastReceiver了.写到这里我挺纠结的,因为广播接收者确实比较简单,但是各位就不要以为简单的就不内涵,也许我们慢 ...