当前位置: 技术问答>java相关
在jsp中如何判断传来的字符串是8859-1编码还是gb2312编码方式
来源: 互联网 发布时间:2015-08-22
本文导语: 在jsp中如何判断传来的字符串是8859-1编码还是gb2312编码方式 请注意:一定是jsp中 | byte[] temp1,temp2; temp1 = yourstring.getBytes("8859-1"); temp2 = yourstring.getBytes("gb2312"); String compstring1,compstring2; comps...
在jsp中如何判断传来的字符串是8859-1编码还是gb2312编码方式
请注意:一定是jsp中
请注意:一定是jsp中
|
byte[] temp1,temp2;
temp1 = yourstring.getBytes("8859-1");
temp2 = yourstring.getBytes("gb2312");
String compstring1,compstring2;
compstring1 = new String(temp1);
compstring2 = new String(temp2);
if(yourstring.equals(temp1))
{
//8859-1;
}
试一下这个,我自己写的
else
{
//gb2312;
}
temp1 = yourstring.getBytes("8859-1");
temp2 = yourstring.getBytes("gb2312");
String compstring1,compstring2;
compstring1 = new String(temp1);
compstring2 = new String(temp2);
if(yourstring.equals(temp1))
{
//8859-1;
}
试一下这个,我自己写的
else
{
//gb2312;
}