java如何解析json_java中解析json步骤
⼀、  JSON (JavaScript Object Notation)⼀种简单的数据格式,⽐xml更轻巧。
Json建构于两种结构:
1、“名称/值”对的集合(A collection of name/value pairs)。不同的语⾔中,它被理解为对象(object),纪录(record),结构(struct),字典(dictionary),哈希表(hash table),有键列表(keyed list),或者关联数组 (associative array)。 如:
{
“name”:”jackson”,
“age”:100
}
2、值的有序列表(An ordered list of values)。在⼤部分语⾔中,它被理解为数组(array)如:
{
“students”:
[
{“name”:”jackson”,“age”:100},
{“name”:”michael”,”age”:51}
]
}
⼆、java解析JSON步骤
A、服务器端将数据转换成json字符串
然后将数据转为json字符串,核⼼函数是:
public static String createJsonString(String key, Object value)
{
JSONObject jsonObject = new JSONObject();
jsonObject.put(key, value);
String();
}
B、客户端将json字符串转换为相应的javaBean
1、客户端获取json字符串(因为android项⽬中已经集成了json的jar包所以这⾥⽆需导⼊)
public class HttpUtil
{
public static String getJsonContent(String urlStr)
{
try
{// 获取HttpURLConnection连接对象
URL url = new URL(urlStr);
HttpURLConnection httpConn = (HttpURLConnection) url
.openConnection();
// 设置连接属性
httpConn.setConnectTimeout(3000);
httpConn.setDoInput(true);
httpConn.setRequestMethod("GET");
// 获取相应码
int respCode = ResponseCode();
if (respCode == 200)
{
return InputStream());
}
}
catch (MalformedURLException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
catch (IOException e)
{
/
/ TODO Auto-generated catch block
e.printStackTrace();
}
return "";
}
private static String ConvertStream2Json(InputStream inputStream) {
String jsonStr = "";
// ByteArrayOutputStream相当于内存输出流
ByteArrayOutputStream out = new ByteArrayOutputStream();
byte[] buffer = new byte[1024];
int len = 0;
/
/ 将输⼊流转移到内存输出流中
try
{
while ((len = ad(buffer, 0, buffer.length)) != -1) {
out.write(buffer, 0, len);
}
// 将内存流转换为字符串
jsonStr = new ByteArray());
}
catch (IOException e)
{
/
/ TODO Auto-generated catch block
e.printStackTrace();
}
return jsonStr;
}
}
2、获取javaBean
public static Person getPerson(String jsonStr)
{
Person person = new Person();
try
{// 将json字符串转换为json对象
JSONObject jsonObj = new JSONObject(jsonStr);
// 得到指定json key对象的value对象
JSONObject personObj = JSONObject("person"); // 获取之对象的所有属性
person.Int("id"));
json转换对象person.String("name"));
person.String("address"));
}
catch (JSONException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
return person;
}
public static List getPersons(String jsonStr)
{
List list = new ArrayList();
JSONObject jsonObj;
try
{// 将json字符串转换为json对象
jsonObj = new JSONObject(jsonStr);
/
/ 得到指定json key对象的value对象
JSONArray personList = JSONArray("persons"); // 遍历jsonArray
for (int i = 0; i < personList.length(); i++)
{
// 获取每⼀个json对象
JSONObject jsonItem = JSONObject(i);
// 获取每⼀个json对象的值
Person person = new Person();
person.Int("id"));
person.String("name"));
person.String("address"));
list.add(person);
}
}
catch (JSONException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
return list;
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。