gpt4 book ai didi

android - 在 adb logcat 输出中格式化 json 字符串

转载 作者:IT老高 更新时间:2023-10-28 12:52:11 26 4
gpt4 key购买 nike

出于日志记录的目的,我打印出 json 响应字符串,并且可以在 android “adb logcat” 命令中看到它们。有没有办法很好地格式化 adb logcat 输出中的 json 字符串,使其看起来像这样?

{ "code" : "0",
"text" : "hello world"
}

最佳答案

您可以使用 JSONObject.toString()在 logcat 上漂亮地打印 JSON 的方法。

Log.d("tag", jsonObject.toString(4));

输出

(29124): {
(29124): "text": "hello world",
(29124): "code": "0"
(29124): }

关于android - 在 adb logcat 输出中格式化 json 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15866042/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com