阿拉伯文字显示问题
Arabic text display issues
齐射响应未显示阿拉伯字符 ف
我得到的不是这个字符,而是一个菱形问号 � 。
其他所有字符都显示正常,我不知道这个字符发生了什么alone.Is 是 volley 网络服务的问题吗?
任何帮助表示赞赏。
final RequestQueue requestQueue = Volley.newRequestQueue(Register.this);
String url = Config.url + "validateID";
StringRequest stringRequest = new StringRequest(Request.Method.POST, url, new Response.Listener<String>() {
@Override
public void onResponse(String response) {
response = response.trim();
if (response != null) {
try {
response = new String(response.getBytes(), "UTF-8");
response = Html.fromHtml(response).toString();
response = fixEncodingUnicode(response);
System.out.println("@@@@@@utf@@@@" + response);
try {
JSONObject jsonObject = new JSONObject(response);
String resp_code = jsonObject.getString("responseCode");
String status = jsonObject.getString("status");
if (resp_code.equals("200") && status.equals("ACTIVE")) {
ed_full_name.setText(jsonObject.getString("name"));
ed_full_name_arabic.setText(jsonObject.getString("namearabic"));
}
} catch (JSONException e) {
e.printStackTrace();
}
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
progressDialog.dismiss();
}
public static String fixEncodingUnicode(String response) {
String str = "";
try {
str = new String(response.getBytes("windows-1254"), "UTF-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
String decodedStr = Html.fromHtml(str).toString();
return decodedStr;
}
恐怕从错误编码到正确编码的补丁代码不能保证所有字符都能在这个过程中存活下来。 java 中的主要原则是 String 始终保存 Unicode 文本;因此总是会转换为以某种编码表示文本的字节。
response = new String(response.getBytes(), "UTF-8");
这是错误的。 getBytes()
without charset 使用运行当前应用程序的平台的默认字符集。所以它对您的开发 Windows PC 和生产 Linux 服务器有不同的影响。任何效果都是完全误导的。
response = Html.fromHtml(response).toString();
这对 HTML 个实体进行编码。在 请求 一个符号中,然后 <form>
缺少一个 accept-encoding="UTF-8"
。请求的一部分 headers。然后浏览器将 non-Latin 作为 HTML 实体发送。
这里可能是层与层之间的通信失败,其中请求部分缺少接受 header.
的 UTF-8
response = fixEncodingUnicode(response);
或 str = new String(response.getBytes("windows-1254"), "UTF-8");
不需要,因为 java 中的字符串已经是 Unicode。只要 Unicode 符号在 Windows-1254.
中不可翻译,它就会引入一个菱形
看来一切都错了。 这个错误似乎是早些时候犯的。
更正请求,否则 correct 请求可能会给出错误的结果。选择 UTF-8 而不是 Windows-1254.
如果输入参数 response
,您可以转储、记录字节,例如:
Arrays.toString(response.codePoints().toArray())
(十六进制格式会更易读。)
正如@Joop Eggen 所说,不需要 html 和 Windows-1254 编码。只需使用 Volley 的默认编码,即 ISO-8859-1。
response = new String(response.getBytes("ISO-8859-1"), "UTF-8");
完整代码如下。
final RequestQueue requestQueue = Volley.newRequestQueue(Register.this);
String url = Config.url + "validateID";
StringRequest stringRequest = new StringRequest(Request.Method.POST, url, new Response.Listener<String>() {
@Override
public void onResponse(String response) {
response = response.trim();
if (response != null) {
try {
response = new String(response.getBytes("ISO-8859-1"), "UTF-8");
try {
JSONObject jsonObject = new JSONObject(response);
String resp_code = jsonObject.getString("responseCode");
String status = jsonObject.getString("status");
if (resp_code.equals("200") && status.equals("ACTIVE")) {
ed_full_name.setText(jsonObject.getString("name"));
ed_full_name_arabic.setText(jsonObject.getString("namearabic"));
}
} catch (JSONException e) {
e.printStackTrace();
}
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
progressDialog.dismiss();
}
齐射响应未显示阿拉伯字符 ف 我得到的不是这个字符,而是一个菱形问号 � 。 其他所有字符都显示正常,我不知道这个字符发生了什么alone.Is 是 volley 网络服务的问题吗? 任何帮助表示赞赏。
final RequestQueue requestQueue = Volley.newRequestQueue(Register.this);
String url = Config.url + "validateID";
StringRequest stringRequest = new StringRequest(Request.Method.POST, url, new Response.Listener<String>() {
@Override
public void onResponse(String response) {
response = response.trim();
if (response != null) {
try {
response = new String(response.getBytes(), "UTF-8");
response = Html.fromHtml(response).toString();
response = fixEncodingUnicode(response);
System.out.println("@@@@@@utf@@@@" + response);
try {
JSONObject jsonObject = new JSONObject(response);
String resp_code = jsonObject.getString("responseCode");
String status = jsonObject.getString("status");
if (resp_code.equals("200") && status.equals("ACTIVE")) {
ed_full_name.setText(jsonObject.getString("name"));
ed_full_name_arabic.setText(jsonObject.getString("namearabic"));
}
} catch (JSONException e) {
e.printStackTrace();
}
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
progressDialog.dismiss();
}
public static String fixEncodingUnicode(String response) {
String str = "";
try {
str = new String(response.getBytes("windows-1254"), "UTF-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
String decodedStr = Html.fromHtml(str).toString();
return decodedStr;
}
恐怕从错误编码到正确编码的补丁代码不能保证所有字符都能在这个过程中存活下来。 java 中的主要原则是 String 始终保存 Unicode 文本;因此总是会转换为以某种编码表示文本的字节。
response = new String(response.getBytes(), "UTF-8");
这是错误的。
getBytes()
without charset 使用运行当前应用程序的平台的默认字符集。所以它对您的开发 Windows PC 和生产 Linux 服务器有不同的影响。任何效果都是完全误导的。response = Html.fromHtml(response).toString();
这对 HTML 个实体进行编码。在 请求 一个符号中,然后
的 UTF-8<form>
缺少一个accept-encoding="UTF-8"
。请求的一部分 headers。然后浏览器将 non-Latin 作为 HTML 实体发送。 这里可能是层与层之间的通信失败,其中请求部分缺少接受 header.response = fixEncodingUnicode(response);
或str = new String(response.getBytes("windows-1254"), "UTF-8");
不需要,因为 java 中的字符串已经是 Unicode。只要 Unicode 符号在 Windows-1254.
中不可翻译,它就会引入一个菱形
看来一切都错了。 这个错误似乎是早些时候犯的。 更正请求,否则 correct 请求可能会给出错误的结果。选择 UTF-8 而不是 Windows-1254.
如果输入参数 response
,您可以转储、记录字节,例如:
Arrays.toString(response.codePoints().toArray())
(十六进制格式会更易读。)
正如@Joop Eggen 所说,不需要 html 和 Windows-1254 编码。只需使用 Volley 的默认编码,即 ISO-8859-1。
response = new String(response.getBytes("ISO-8859-1"), "UTF-8");
完整代码如下。
final RequestQueue requestQueue = Volley.newRequestQueue(Register.this);
String url = Config.url + "validateID";
StringRequest stringRequest = new StringRequest(Request.Method.POST, url, new Response.Listener<String>() {
@Override
public void onResponse(String response) {
response = response.trim();
if (response != null) {
try {
response = new String(response.getBytes("ISO-8859-1"), "UTF-8");
try {
JSONObject jsonObject = new JSONObject(response);
String resp_code = jsonObject.getString("responseCode");
String status = jsonObject.getString("status");
if (resp_code.equals("200") && status.equals("ACTIVE")) {
ed_full_name.setText(jsonObject.getString("name"));
ed_full_name_arabic.setText(jsonObject.getString("namearabic"));
}
} catch (JSONException e) {
e.printStackTrace();
}
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
progressDialog.dismiss();
}