欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Ejb中的字符编码转换问题

程序员文章站 2022-03-11 08:35:58
...
我们在使用Ejb时,有时候读取出来的数据或者往数据库中插入数据时显示为乱码,这真是件让人郁闷的事,不过最近我找了一种很好处理的方法,也供给大家参考下:
如果要将数据从数据库中读出来的时候要将编码从ISO8859_1转换为GBK:就调用ISO2GBK(String a)方法。
如果是将数据插入到数据库中就将编码从GBK转换为ISO8859_1:就调用GBK2ISO(String b)方法。

public class EncodingConvert {
public String ISO2GBK(String s){
String ns = null;
if (s == null)
return ns;

byte[] nbyte = s.getBytes();
//先判断是否为GBK编码,是就不用转了
if(nbyte.length>1 && isGBK(nbyte[0],nbyte[1]))
return s;

//转码
try {
ns = new String(s.getBytes("iso8859_1"), "GBK");
} catch (UnsupportedEncodingException ex) {
ex.printStackTrace();
}
return ns;
}

/**
* 将字符串从GBK转换成ISO
* @param s String
* @return String
*/

public String GBK2ISO(String s){
String ns = null;
if (s == null)
return ns;
byte[] nbyte = s.getBytes();
//先判断是否为GBK编码,不是就不用转了
if(nbyte.length>1 && (!isGBK(nbyte[0],nbyte[1])))
return s;

try {
ns = new String(s.getBytes("gbk"), "ISO-8859-1");
} catch (UnsupportedEncodingException ex) {
ex.printStackTrace();
}
return ns;
}

/**
*
* 判断字符串是否是GBK编码
* @param head byte
* @param tail byte
* @return boolean
*/
public boolean isGBK( byte head,byte tail ){
int iHead = head & 0xff;
int iTail = tail & 0xff;
return ((iHead>=0x81 && iHead<=0xfe &&
(iTail>=0x40 && iTail<=0x7e ||
iTail>=0x80 && iTail<=0xfe)) ? true : false);
}

/**
* 判断字符串是否为GB2312编码
*
* @param head byte
* @param tail byte
* @return boolean
*/
public boolean isGB2312( byte head,byte tail ){
int iHead = head & 0xff;
int iTail = tail & 0xff;
return ((iHead>=0xa1 && iHead<=0xf7 &&
iTail>=0xa1 && iTail<=0xfe) ? true : false);
}

}
相关标签: EJB