gpt4 book ai didi

android - 如何获得仅包含POST响应的最后一部分的字符串?

转载 作者:行者123 更新时间:2023-12-02 13:44:51 25 4
gpt4 key购买 nike

由于POST请求,我收到以下形式的响应:

D/OkHttp: {"msg":"OK","uploadid":"1dd0ff732ca3b0fc3892180b3d67e0df","ids":["5e20fe2a688c775700049d4c"]}

如何获得仅包含响应的最后一部分的字符串?示例: string response = "5e20fe2a688c775700049d4c"

最佳答案

从http请求中,您得到的响应就是您到达的响应。您现在所要做的就是:

 //response is the string you got from server
JSONObject jobject = new JSONObject(response);
String s = jobject.getString("ids");

TextView.setText("Response string is : " + s);

您可以随时使用来检查系统读取的内容
 Log.i("TAG",response);
//and for the element of json
Log.i("Tag",s);

关于android - 如何获得仅包含POST响应的最后一部分的字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59779765/

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