gpt4 book ai didi

java - return json.getString ("key") 当我想要获取俄语字符时返回 null

转载 作者:行者123 更新时间:2023-12-01 13:20:26 26 4
gpt4 key购买 nike

这样大家都很高兴

.php

  $response["success"] = 0;
$response["key"] = "Error database. The comment couldn't be added!";
die(json_encode($response));

.java

return json.getString("key");

但是当我这样尝试时

  $response["success"] = 0;
$response["key"] = "Russian - Русский!";
die(json_encode($response));

.java 返回 null

Log.d("JSON GET STRING", json.getString("key"));//  NULL  ????

这个答案

json_encode($response,JSON_UNESCAPED_UNICODE); // Like this..

如果我的mysql版本是5.4.0就可以解决我的问题,但是我的mysql版本较低,我需要另一种解决方法

最佳答案

json_encode() 中使用 JSON_UNESCAPED_UNICODE 参数

json_encode($response,JSON_UNESCAPED_UNICODE); // Like this..

关于java - return json.getString ("key") 当我想要获取俄语字符时返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22062256/

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