在 logcat 上以 json 形式获取响应

发布于 2024-10-28 09:30:41 字数 470 浏览 1 评论 0原文

{
    "Generalinfor": {
        "type": "Response",
        "name": "abcde",
        "ver": "3.0.0" 
    },
    "Login": {
        "errorCode": "001",
        "errorMsg": "Login Failed - Missing of Password",
        "userID": "0",
        "versionAvail": "",
        "versionDownloadMsg": "can't login " 
    } 
} 

我从我的网络服务器上的 logcat 上收到 json 格式的响应。现在我想将其转换为字符串并在模拟器上显示此图像。我怎样才能做到这一点?

请指导我任何可能的提示或示例代码。

{
    "Generalinfor": {
        "type": "Response",
        "name": "abcde",
        "ver": "3.0.0" 
    },
    "Login": {
        "errorCode": "001",
        "errorMsg": "Login Failed - Missing of Password",
        "userID": "0",
        "versionAvail": "",
        "versionDownloadMsg": "can't login " 
    } 
} 

I am getting response in json format on logcat from my web server.Now i wanted to convert it into string and to displayed this image on emulator. How can I accomplish this?

Please guide me with any tips or sample code possible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赠意 2024-11-04 09:30:41
import org.json.JSONObject;

JSONObject jObject = new JSONObject(yourJsonString);

http://www.json.org/javadoc/org/json/JSONObject.html

String type = (String) jObject.get("type"); // would return your type 'Response'

http://www.json .org/javadoc/org/json/JSONObject.html#get(java.lang.String)

等...

import org.json.JSONObject;

JSONObject jObject = new JSONObject(yourJsonString);

http://www.json.org/javadoc/org/json/JSONObject.html

String type = (String) jObject.get("type"); // would return your type 'Response'

http://www.json.org/javadoc/org/json/JSONObject.html#get(java.lang.String)

etc...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文