在我的android项目中,当我将语言切换为阿拉伯语时,调用日志页面不显示数据,但当我切换到其他语言(如英文)时可以正常显示,如何解决,请参阅以下信息
1. callLog适配器的部分代码如下:
//显示归属地
if (callLog.getBelong_area() != null && !callLog.getBelong_area().equals("")) {
LogE.e("item","有归属地:"+callLog.getBelong_area());
holder.belong_area.setVisibility(View.VISIBLE);
holder.belong_area.setText(callLog.getBelong_area());
} else {
LogE.e("item","没有有归属地");
holder.belong_area.setText("");
holder.belong_area.setVisibility(View.GONE);
}
2.当我输入固定值时,它仍然不显示数据,例如:
holder.belong_area.setText("北京");
3.按如下方式打印日志日志:
08-23 10:07:13.241 17494-17494 / com.allinone.callerid E / item:有归属地:北京 08-23 10:07:13.607 17494-17494 / com.allinone.callerid E / item: 有归属地:河北石家庄08-23 10:07:13.674 17494-17494 / com.allinone.callerid E / item:有归属地:北京08-23 10:07:13.714 17494-17494 / com.allinone.callerid E / item:有归属地:湖北省,武汉市
4.Runtime screenshot:
阿拉伯语(错误),
答案 0 :(得分:0)
你应该有适当的系统字符集。
您可以查看以下代码以检测该语言的字符集。
public class CharsetDetectTest {
public static void main(String[] args) {
detectCharset("北京");
}
public static void detectCharset(String originalStr) {
String[] charSet
= { "utf-8", "big5", "EUC-CN", "iso-8859-1", "gb2312" };
for (int i = 0; i < charSet.length; i++) {
for (int j = 0; j < charSet.length; j++) {
try {
LogE.e("charaters",
"[" + charSet[i] + "==>" + charSet[j] + "] = "
+ new String(originalStr.getBytes(charSet[i]), charSet[j]));
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
}
}
}
调试输出将是
[utf-8==>utf-8] = 北京
[utf-8==>big5] = ��鈭�
[utf-8==>EUC-CN] = ��浜�
[utf-8==>iso-8859-1] = å京
[utf-8==>gb2312] = ��浜�
[big5==>utf-8] = �_��
[big5==>big5] = 北京
[big5==>EUC-CN] = �_ㄊ
[big5==>iso-8859-1] = ¥_¨Ê
[big5==>gb2312] = �_ㄊ
[EUC-CN==>utf-8] = ����
[EUC-CN==>big5] = 控儔
[EUC-CN==>EUC-CN] = 北京
[EUC-CN==>iso-8859-1] = ±±¾©
[EUC-CN==>gb2312] = 北京
[iso-8859-1==>utf-8] = ??
[iso-8859-1==>big5] = ??
[iso-8859-1==>EUC-CN] = ??
[iso-8859-1==>iso-8859-1] = ??
[iso-8859-1==>gb2312] = ??
[gb2312==>utf-8] = ����
[gb2312==>big5] = 控儔
[gb2312==>EUC-CN] = 北京
[gb2312==>iso-8859-1] = ±±¾©
[gb2312==>gb2312] = 北京
然后,使用一个正确的字符集。
holder.belong_area.setText(new String("北京".getBytes("utf-8"), "utf-8"));
或
holder.belong_area.setText(new String("北京".getBytes("utf-8"));
您可以查看中文字符site。
最好的问候,