作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的代码:
BufferedReader reader = new BufferedReader(new InputStreamReader(
inputStreamObjectValue));
StringBuilder sb = new StringBuilder();
String line = null;
// Read Server Response
while ((line = reader.readLine()) != null) {
// Append server response in string
sb.append(line + "\n");
}
Log.e("values :",sb.toString());
当我运行时日志打印
{"Status":1,"SessionId":"ulrvmysxrmha14t0cd031upp6yluh69amgfub02j78lubcht5i"}
如何分离项目。例如
Status=1 and SessionId="ulrvmysxrmha14t0cd031upp6yluh69amgfub02j78lubcht5i";
请帮助我。
最佳答案
使用这个:
try {
JSONObject job = new JSONObject(sb.toString());
int Status = job.getInt("Status");
String SessionId = job.getString("SessionId");
} catch (JSONException e) {
// Handle error
}
引用:http://developer.android.com/reference/org/json/JSONObject.html
关于java - 如何在 StringBuilder 中将项目与 JsonObject 分开?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23086320/
我是一名优秀的程序员,十分优秀!