欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android中的JSON详细总结

程序员文章站 2023-12-01 08:17:40
1、json(javascript objectnotation) 定义: 一种轻量级的数据交换格式,具有良好的可读和便于快速编写的特性。业内主流技术为其提供了完整的解决方...
1、json(javascript objectnotation) 定义:
一种轻量级的数据交换格式,具有良好的可读和便于快速编写的特性。业内主流技术为其提供了完整的解决方案(有点类似于正则表达式,获得了当今大部分语言的支持),从而可以在不同平台间进行数据交换。json采用兼容性很高的文本格式,同时也具备类似于c语言体系的行为。 – json.org

2、json的结构:

(1) name/value pairs(无序的):类似所熟知的keyed list、 hash table、disctionary和associative array。在android平台中同时存在另外一个类"bundle",某种程度上具有相似的行为。

(2) array(有序的):一组有序的数据列表。

对象
对象是一个无序的name/value pairs集合。{ name:value, name:value , name:value .... }
例子:{"name":"小猪","age":20 }

array
  array是值(value)的有序集合。[ value , value , value ...... ]
  值(value)可以是双引号括起来的字符串(string)、数值(number)、true、false、 null、对象(object)或者数组(array)。这些结构可以嵌套。
  字符串(string)是由双引号包围的任意数量unicode字符的集合,使用反斜线转义。一个字符(character)即一个单独的字符串(characterstring)。 例如:\ + " \/ b f n r t u 进行转义。
例子1: array里面包含对象(object)
[{"id":1,"name":"小猪","age”:22} , {"id":2,"name":"小猫","age”:23}, .......]

例子2:同样对象(object)中可以包含array

(1)一个对象包含1个数组,2个子对象
{"root":[{"id":"001","name":"小猪"},{"id":"002","name":"小猫"},{"id":"003","name":"小狗"}],
"total":3,
"success":true
}

(2)也可以对象嵌套子对象,子对象再嵌套数组
{"calendar":
{"calendarlist":
[
{"id":"001","name":"小猪"},
{"id":"002","name":"小猫"}
]
}
}

总之,格式多种多样,可以互相嵌套

在android中包含四个与json相关的类和一个exceptions:

jsonarray
jsonobject
jsonstringer
jsontokener
jsonexception

(1)jsonobject:

这是系统中有关json定义的基本单元,其包含一对儿(key/value)数值。
它对外部(external:应用tostring()方法输出的数值)调用的响应体现为一个标准的字符串(例如:{“json”:“hello, world”},最外被大括号包裹,其中的key和value被冒号”:”分隔)。其对于内部(internal)行为的操作格式略微,例如:初始化一个jsonobject实例,引用内部的put()方法添加数值:new jsonobject().put(“json”, “hello, world!”),在key和value之间是以逗号”,”分隔。
value的类型包括:boolean、jsonarray、jsonobject、number、string或者默认值jsonobject.null object。
有两个不同的取值方法:
get(): 在确定数值存在的条件下使用,否则当无法检索到相关key时,将会抛出一个exception信息。
opt(): 这个方法相对比较灵活,当无法获取所指定数值时,将会返回一个默认数值,并不会抛出异常。

(2)jsonarray:

它代表一组有序的数值。将其转换为string输出(tostring)所表现的形式是用方括号包裹,数值以逗号”,”分隔(例如:[value1,value2,value3],大家可以亲自利用简短的代码更加直观的了解其格式)。这个类的内部同样具有查询行为,get()和opt()两种方法都可以通过index索引返回指定的数值,put()方法用来添加或者替换数值。
同样这个类的value类型可以包括:boolean、jsonarray、jsonobject、number、string或者默认值jsonobject.nullobject。

(3)jsonstringer:

根据官方的解释,这个类可以帮助快速和便捷的创建jsontext。其最大的优点在于可以减少由于格式的错误导致程序异常,引用这个类可以自动严格按照json语法规则(syntaxrules)创建json text。每个jsonstringer实体只能对应创建一个json text。

根据下边的实例来了解其它相关信息:

复制代码 代码如下:

string mystring = new jsonstringer().object().key("name").value("小猪").endobject().tostring();


如果是一组标准格式的json text:{"name" :"小猪"}

其中的.object()和.endobject()必须同时使用,是为了按照object标准给数值添加边界。同样,针对数组也有一组标准的方法来生成边界.array()和.endarray()。

(4)jsontokener:

这个是系统为jsonobject和jsonarray构造器解析jsonsource string的类,它可以从source string中提取数值信息。

jsonexception:

是json.org类抛出的异常信息。
下面引用一个完整的应用实例:
应用jsonobject存储map类型数值:
复制代码 代码如下:

public static jsonobject getjson(map map) {
iterator iter = map.entryset().iterator();
jsonobject holder = new jsonobject();
while (iter.hasnext()) {
map.entry pairs = (map.entry) iter.next();
string key = (string) pairs.getkey();
map m = (map) pairs.getvalue();
jsonobject data = new jsonobject();
try {
iterator iter2 = m.entryset().iterator();
while (iter2.hasnext()) {
map.entry pairs2 = (map.entry) iter2.next();
data.put((string) pairs2.getkey(), (string) pairs2
.getvalue());
}
holder.put(key, data);
} catch (jsonexception e) {
log.e("transforming", "there was an error packaging json", e);
}
}
return holder;
}

下面是详细的例子:
复制代码 代码如下:

import java.io.bytearrayoutputstream;
import java.io.inputstream;
import java.net.*;
import java.util.arraylist;
import java.util.hashmap;
import java.util.list;
import java.util.map;
import org.json.jsonarray;
import org.json.jsonobject;
import android.util.log;

public class json {

/**
* 获取"数组形式"的json数据,
* 数据形式:[{"id":1,"name":"小猪"},{"id":2,"name":"小猫"}]
* @param path 网页路径
* @return 返回list
* @throws exception
*/
public static list<map<string, string>> getjsonarray(string path) throws exception {
string json = null;
list<map<string, string>> list = new arraylist<map<string, string>>();
map<string, string> map = null;
url url = new url(path);
httpurlconnection conn = (httpurlconnection) url.openconnection();// 利用httpurlconnection对象,我们可以从网络中获取网页数据.
conn.setconnecttimeout(5 * 1000); // 单位是毫秒,设置超时时间为5秒
conn.setrequestmethod("get"); // httpurlconnection是通过http协议请求path路径的,所以需要设置请求方式,可以不设置,因为默认为get
if (conn.getresponsecode() == 200) {// 判断请求码是否是200码,否则失败
inputstream is = conn.getinputstream(); // 获取输入流
byte[] data = readstream(is); // 把输入流转换成字符数组
json = new string(data); // 把字符数组转换成字符串

//数据形式:[{"id":1,"name":"小猪","age":22},{"id":2,"name":"小猫","age":23}]
jsonarray jsonarray = new jsonarray(json); //数据直接为一个数组形式,所以可以直接 用android提供的框架jsonarray读取json数据,转换成array

for (int i = 0; i < jsonarray.length(); i++) {
jsonobject item = jsonarray.getjsonobject(i); //每条记录又由几个object对象组成
int id = item.getint("id"); // 获取对象对应的值
string name = item.getstring("name");

map = new hashmap<string, string>(); // 存放到map里面
map.put("id", id + "");
map.put("name", name);
list.add(map);
}
}

// ***********测试数据******************
for (map<string, string> list2 : list) {
string id = list2.get("id");
string name = list2.get("name");
log.i("abc", "id:" + id + " | name:" + name);
}
return list;
}

/**
* 获取"对象形式"的json数据,
* 数据形式:{"total":2,"success":true,"arraydata":[{"id":1,"name":"小猪"},{"id":2,"name":"小猫"}]}
* @param path 网页路径
* @return 返回list
* @throws exception
*/
public static list<map<string, string>> getjsonobject(string path) throws exception {
list<map<string, string>> list = new arraylist<map<string, string>>();
map<string, string> map = null;
url url = new url(path);
httpurlconnection conn = (httpurlconnection) url.openconnection();// 利用httpurlconnection对象,我们可以从网络中获取网页数据.
conn.setconnecttimeout(5 * 1000); // 单位是毫秒,设置超时时间为5秒
conn.setrequestmethod("get"); // httpurlconnection是通过http协议请求path路径的,所以需要设置请求方式,可以不设置,因为默认为get
if (conn.getresponsecode() == 200) {// 判断请求码是否是200码,否则失败
inputstream is = conn.getinputstream(); // 获取输入流
byte[] data = readstream(is); // 把输入流转换成字符数组
string json = new string(data); // 把字符数组转换成字符串


//数据形式:{"total":2,"success":true,"arraydata":[{"id":1,"name":"小猪"},{"id":2,"name":"小猫"}]}
jsonobject jsonobject=new jsonobject(json); //返回的数据形式是一个object类型,所以可以直接转换成一个object
int total=jsonobject.getint("total");
boolean success=jsonobject.getboolean("success");
log.i("abc", "total:" + total + " | success:" + success); //测试数据

jsonarray jsonarray = jsonobject.getjsonarray("arraydata");//里面有一个数组数据,可以用getjsonarray获取数组
for (int i = 0; i < jsonarray.length(); i++) {
jsonobject item = jsonarray.getjsonobject(i); // 得到每个对象
int id = item.getint("id"); // 获取对象对应的值
string name = item.getstring("name");

map = new hashmap<string, string>(); // 存放到map里面
map.put("id", id + "");
map.put("name", name);
list.add(map);
}
}

// ***********测试数据******************

for (map<string, string> list2 : list) {
string id = list2.get("id");
string name = list2.get("name");
log.i("abc", "id:" + id + " | name:" + name);
}
return list;
}


/**
* 获取类型复杂的json数据
*数据形式:
{"name":"小猪",
"age":23,
"content":{"questionstotal":2,
"questions": [ { "question": "what's your name?", "answer": "小猪"},{"question": "what's your age", "answer": "23"}]
}
}
* @param path 网页路径
* @return 返回list
* @throws exception
*/
public static list<map<string, string>> getjson(string path) throws exception {
list<map<string, string>> list = new arraylist<map<string, string>>();
map<string, string> map = null;
url url = new url(path);
httpurlconnection conn = (httpurlconnection) url.openconnection();// 利用httpurlconnection对象,我们可以从网络中获取网页数据.
conn.setconnecttimeout(5 * 1000); // 单位是毫秒,设置超时时间为5秒
conn.setrequestmethod("get"); // httpurlconnection是通过http协议请求path路径的,所以需要设置请求方式,可以不设置,因为默认为get
if (conn.getresponsecode() == 200) {// 判断请求码是否是200码,否则失败
inputstream is = conn.getinputstream(); // 获取输入流
byte[] data = readstream(is); // 把输入流转换成字符数组
string json = new string(data); // 把字符数组转换成字符串


/*数据形式:
{"name":"小猪",
"age":23,
"content":{"questionstotal":2,
"questions": [ { "question": "what's your name?", "answer": "小猪"},{"question": "what's your age", "answer": "23"}]
}
}
*/
jsonobject jsonobject=new jsonobject(json); //返回的数据形式是一个object类型,所以可以直接转换成一个object
string name=jsonobject.getstring("name");
int age=jsonobject.getint("age");
log.i("abc", "name:" + name + " | age:" + age); //测试数据

jsonobject contentobject=jsonobject.getjsonobject("content"); //获取对象中的对象
string questionstotal=contentobject.getstring("questionstotal"); //获取对象中的一个值
log.i("abc", "questionstotal:" + questionstotal); //测试数据

jsonarray contentarray=contentobject.getjsonarray("questions"); //获取对象中的数组
for (int i = 0; i < contentarray.length(); i++) {
jsonobject item = contentarray.getjsonobject(i); // 得到每个对象
string question = item.getstring("question"); // 获取对象对应的值
string answer = item.getstring("answer");

map = new hashmap<string, string>(); // 存放到map里面
map.put("question", question);
map.put("answer", answer);
list.add(map);
}
}

// ***********测试数据******************

for (map<string, string> list2 : list) {
string question = list2.get("question");
string answer = list2.get("answer");
log.i("abc", "question:" + question + " | answer:" + answer);
}
return list;
}




/**
* 把输入流转换成字符数组
* @param inputstream 输入流
* @return 字符数组
* @throws exception
*/
public static byte[] readstream(inputstream inputstream) throws exception {
bytearrayoutputstream bout = new bytearrayoutputstream();
byte[] buffer = new byte[1024];
int len = 0;
while ((len = inputstream.read(buffer)) != -1) {
bout.write(buffer, 0, len);
}
bout.close();
inputstream.close();

return bout.tobytearray();
}
}