作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
响应字符串是这样的:
{
"images": [
{
"transaction": {
"status": "success",
"topLeftX": 325,
"topLeftY": 451,
"gallery_name": "Ironman",
"subject_id": "Tony",
"confidence": 0.99414,
"height": 630,
"width": 630,
"face_id": 1,
"quality": 1.75477
},
"candidates": [
{
"subject_id": "Tony",
"confidence": 0.99414,
"enrollment_timestamp": "1487644861022"
},
{
"subject_id": "Tony",
"confidence": 0.99414,
"enrollment_timestamp": "1487644876280"
}
]
}
]
}
我尝试了这段代码但不起作用..
JSONArray arr = new JSONArray(response);
JSONObject jObj = arr.getJSONObject(0);
String status = jObj.getString("status");
String message = jObj.getString("subject_id");
<小时/>
最佳答案
使用json简单lib
JSONObject json = new JSONObject(yourString);
JSONArray images = json.getJSONArray("images");
你可以循环抛出这个数组
for (int i = 0; i < images.length(); i++) {
JSONObject o = images.getJSONObject(i);
....
}
关于java - 我收到如下所示的 HTTP 响应字符串。我想要响应字符串中的 subject_id 和状态字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42599808/
我是新手。只是想知道哪种方法更好,如果找不到subject_id,它将返回nil: @subject = Subject.find_by_id(params[:subject_id]) 或者 @sub
大家好,我的 mySQL 查询有问题。请查看我的表格和当前查询。 表“教师” --------------------------------------------- id |firstname |
响应字符串是这样的: { "images": [ { "transaction": { "status": "success", "topLef
我是一名优秀的程序员,十分优秀!