//中文转换成unicode码值
String str = "抢购人数太多,请稍后重试!" ;
char[]arChar=str.toCharArray();
int iValue=0;
String uStr="" ;
for(int i=0;i<arChar. length;i++){
iValue=( int)str.charAt(i);
if(iValue<=256){
uStr+= "\\"+Integer. toHexString(iValue);
} else{
uStr+= "\\u"+Integer. toHexString(iValue);
}
}
//unicode码值转换成中文
String str = "抢购人数太多,请稍后重试!" ;
char[]arChar=str.toCharArray();
int iValue=0;
String uStr= "";
for( int i=0;i<arChar. length;i++){
iValue=( int)str.charAt(i);
if(iValue<=256){
uStr+= "\\"+Integer. toHexString(iValue);
} else{
uStr+= "\\u"+Integer. toHexString(iValue);
}
}
时间: 2024-11-25 12:31:21