博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Json 数据解析
阅读量:5070 次
发布时间:2019-06-12

本文共 471 字,大约阅读时间需要 1 分钟。

Type 1:

通过 JsonArray 和 JsonObject 解析

String str= String.format("[{\"id\":\"5\",\"version\":\"5.5\",\"name\":\"Name1\"}," +        "{\"id\":\"6\",\"version\":\"6.6\",\"name\":\"Name2\"}]");try {    JSONArray jsonArray=new JSONArray(str);    for (int i=0;i

Type2:

compile 'com.google.code.gson:gson:2.7'

Gson gson = new Gson();        listNew = gson.fromJson(result, new TypeToken
>() {}.getType());

转载于:https://www.cnblogs.com/-Tiger/p/7274342.html

你可能感兴趣的文章
Python学习资料
查看>>
多服务器操作利器 - Polysh
查看>>
[LeetCode] Candy
查看>>
jQuery 自定义函数
查看>>
jquery datagrid 后台获取datatable处理成正确的json字符串
查看>>
ActiveMQ与spring整合
查看>>
web服务器
查看>>
F# 编程 借助 F# 构建 MVVM 应用程序
查看>>
网卡流量检测.py
查看>>
【转】Android的权限permission
查看>>
ajax
查看>>
poj1981 Circle and Points 单位圆覆盖问题
查看>>
POP的Stroke动画
查看>>
线程同步机制初识 【转载】
查看>>
SQL语句在查询分析器中可以执行,代码中不能执行
查看>>
yii 1.x 添加 rules 验证url数组
查看>>
html+css 布局篇
查看>>
SQL优化
查看>>
用C语言操纵Mysql
查看>>
轻松学MVC4.0–6 MVC的执行流程
查看>>