怎么解析从服务器返回的json

怎么解析从服务器返回的json,第1张

json数据格式解析我自己分为两种;

一种是普通的,一种是带有数组形式的;

普通形式的:

服务器端返回的json数据格式如下:

复制代码代码如下:

{"userbean":{"Uid":"100196","Showname":"\u75af\u72c2\u7684\u7334\u5b50","Avtar":null,"State":1}}

分析代码如下:

复制代码代码如下:

// TODO 状态处理 500 200

int res = 0

res = httpClient.execute(httpPost).getStatusLine().getStatusCode()

if (res == 200) {

/*

* 当返回码为200时,做处理

* 得到服务器端返回json数据,并做处理

* */

HttpResponse httpResponse = httpClient.execute(httpPost)

StringBuilder builder = new StringBuilder()

BufferedReader bufferedReader2 = new BufferedReader(

new InputStreamReader(httpResponse.getEntity().getContent()))

String str2 = ""

for (String s = bufferedReader2.readLine()s != nulls = bufferedReader2

.readLine()) {

builder.append(s)

}

Log.i("cat", ">>>>>>" + builder.toString())

JSONObject jsonObject = new JSONObject(builder.toString())

.getJSONObject("userbean")

String Uid

String Showname

String Avtar

String State

Uid = jsonObject.getString("Uid")

Showname = jsonObject.getString("Showname")

Avtar = jsonObject.getString("Avtar")

State = jsonObject.getString("State")

带数组形式的:

服务器端返回的数据格式为:

复制代码代码如下:

{"calendar":

{"calendarlist":

[

{"calendar_id":"1705","title":"(\u4eb2\u5b50)ddssd","category_name":"\u9ed8\u8ba4\u5206\u7c7b","showtime":"1288927800","endshowtime":"1288931400","allDay":false},

{"calendar_id":"1706","title":"(\u65c5\u884c)","category_name":"\u9ed8\u8ba4\u5206\u7c7b","showtime":"1288933200","endshowtime":"1288936800","allDay":false}

]

}

}

分析代码如下:

复制代码代码如下:

// TODO 状态处理 500 200

int res = 0

res = httpClient.execute(httpPost).getStatusLine().getStatusCode()

if (res == 200) {

/*

* 当返回码为200时,做处理

* 得到服务器端返回json数据,并做处理

* */

HttpResponse httpResponse = httpClient.execute(httpPost)

StringBuilder builder = new StringBuilder()

BufferedReader bufferedReader2 = new BufferedReader(

new InputStreamReader(httpResponse.getEntity().getContent()))

String str2 = ""

for (String s = bufferedReader2.readLine()s != nulls = bufferedReader2

.readLine()) {

builder.append(s)

}

Log.i("cat", ">>>>>>" + builder.toString())

/**

* 这里需要分析服务器回传的json格式数据,

*/

JSONObject jsonObject = new JSONObject(builder.toString())

.getJSONObject("calendar")

JSONArray jsonArray = jsonObject.getJSONArray("calendarlist")

for(int i=0i<jsonArray.length()i++){

JSONObject jsonObject2 = (JSONObject)jsonArray.opt(i)

CalendarInfo calendarInfo = new CalendarInfo()

calendarInfo.setCalendar_id(jsonObject2.getString("calendar_id"))

calendarInfo.setTitle(jsonObject2.getString("title"))

calendarInfo.setCategory_name(jsonObject2.getString("category_name"))

calendarInfo.setShowtime(jsonObject2.getString("showtime"))

calendarInfo.setEndtime(jsonObject2.getString("endshowtime"))

calendarInfo.setAllDay(jsonObject2.getBoolean("allDay"))

calendarInfos.add(calendarInfo)

}

总结,普通形式的只需用JSONObject ,带数组形式的需要使用JSONArray 将其变成一个list。

处理和响应JSON数据

使用 HTTP POST 方法传到网站服务器的数据格式可以有很多种,比如「获取POST方法传送的数据」课程中讲到的name=Loen&password=loveyou这种用过&符号分割的key-value键值对格式。我们也可以用JSON格式、XML格式。相比XML的重量、规范繁琐,JSON显得非常小巧和易用。

如果POST的数据是JSON格式,request.json会自动将json数据转换成Python类型(字典或者列表)。

编写server.py:

from flask import Flask, request

app = Flask("myapp")

@app.route('/add', methods=['POST'])

def add():

    print(request.headers)

    print(type(request.json))

    print(request.json)

    result = request.json['n1'] + request.json['n2']

    return str(result)

if __name__ == '__main__':

    app.run(host='127.0.0.1', port=5000, debug=True)

编写client.py模拟浏览器请求:

import requests

json_data = {'n1': 5, 'n2': 3}

r = requests.post("http://127.0.0.1:5000/add", json=json_data)

print(r.text)

运行server.py,然后运行client.py,client.py 会在终端输出:

注意,请求头中Content-Type的值是application/json。

响应JSON

响应JSON时,除了要把响应体改成JSON格式,响应头的Content-Type也要设置为application/json。

编写server.py:

from flask import Flask, request, Response

import json

app = Flask("myapp")

@app.route('/add', methods=['POST'])

def add():

    result = {'sum': request.json['n1'] + request.json['n2']}

    return Response(json.dumps(result),  mimetype='application/json')

if __name__ == '__main__':

    app.run(host='127.0.0.1', port=5000, debug=True)

修改后运行。

编写client.py:

import requests

json_data = {'n1': 5, 'n2': 3}

r = requests.post("http://127.0.0.1:5000/add", json=json_data)

print(r.headers)

print(r.text)

运行client.py,将显示:

client终端返回的第一段内容是服务器的响应头,第二段内容是响应体,也就是服务器返回的JSON格式数据。

另外,如果需要服务器的HTTP响应头具有更好的可定制性,比如自定义Server,可以如下修改add()函数:

@app.route('/add', methods=['POST'])

def add():

    result = {'sum': request.json['n1'] + request.json['n2']}

    resp = Response(json.dumps(result),  mimetype='application/json')

    resp.headers.add('Server', 'python flask')

    return resp

client.py运行后会输出:

{'Content-Type': 'application/json', 'Content-Length': '10', 'Server': 'python flask', 'Date': 'Wed, 11

Sep 2019 09:09:18 GMT'}

{"sum": 8}

响应JSON

使用 jsonify 工具函数。

from flask import Flask, request, jsonify

app = Flask("myapp")

@app.route('/add', methods=['POST'])

def add():

    result = {'sum': request.json['n1'] + request.json['n2']}

    return jsonify(result)

if __name__ == '__main__':

    app.run(host='127.0.0.1', port=5000, debug=True)

运行结果:


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/244041.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-04-12
下一篇2023-04-12

发表评论

登录后才能评论

评论列表(0条)

    保存