字符的格式处理
由于在网页和数据库对于汉字的处理用的格式是不相同的,必须有个格式转换的类,FormatConvert.java 用来处理字符格式的转换.
package Format;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.lang.String;
public class FormatConvert {
public FormatConvert()
{}
public String convert(String str) throws UnsupportedEncodingException,IOException
{
//把数据库中的汉字准确的转换到网页中
if(str==null||str.length()<1)
str="";
else
{
str=(new String(str.getBytes("iso-8859-1"),"GB2312"));
return str;
}
return str;
}
public String reConvert(String str )throws UnsupportedEncodingException,IOException
{
///把网页中的汉字准确的转换到数据库中
if(str==null||str.length()<1)
str="";
else
{ String temp=new String();
temp=(new String(str.getBytes("GB2312"),"iso-8859-1"));
return temp;
}
return str;
}
}