作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我在 android 中创建 json 时,我将阿拉伯字符放入 json 中,如下代码所示:
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(url);
JSONObject json = new JSONObject();
try {
json.put("jsonValue", "بسم الله ");
} catch(Exception e) {
}
JSONArray postjson = new JSONArray();
postjson.put(json);
httppost.setHeader("json", json.toString());
httppost.getParams().setParameter("jsonpost", postjson);
HttpResponse response = httpclient.execute(httppost);
php 代码包含charset_utf_8 但结果不正确。php代码如下所示
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<?php
$json = $_SERVER['HTTP_JSON'];
var_dump($data);
$data = json_decode($json);
$jsonValue= $data->jsonValue;
echo $jsonValue;
?>
打印出来的结果是这样的“(3E 'DDG, 有没有人能帮忙看看?
最佳答案
您可以在 android 中使用 URLEncoder
,如下所示:
json.put("jsonValue",URLEncoder.encode(jsonValue, "utf-8"));
并在您的 php 代码中使用 urldecode:
$jsonValue= urldecode($data->jsonValue);
关于php - 我如何将 json 中的阿拉伯字符从 android 发送到 PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36860414/
我在 mysql 数据库中有一个“价格”字段,其中包含以阿拉伯或波斯数字表示的产品价格。 数字示例:12345567890 //1234567890 我不知道如何格式化它以便以用户友好的方式格式化。我
由于单独使用 prawn gem 时阿拉伯字母显示为未知字符,因此我安装了 Arabic-Prawn gem 0.0.1 以阿拉伯语打印数据。我用下面的代码作为测试 Prawn::Document.g
我是一名优秀的程序员,十分优秀!