xml-rpc不支持非asc字符串的解决方法

类别:Java 点击:0 评论:0 推荐:
年前写了一个xml rpc调用的模块,今天客户(韩国)发来mail,log文件显示调用的时候发生了ioexception,Error:java.io.IOException: Invalid character data corresponding to XML entity &#50920,看了看调用的数据,里面有非ascii码,估计是韩文,用中文测试了一下,也是发生同样的错误。上网查了查,说是apache的xmlrpc实现里过滤了非ascii码,原因是有些xml解析器解析非ascii码的xml结构会有问题。xmlrpc的string类型只能使用ascii码。
想了想,解决办法是对string类型的字符串进行编码,简单的是使用apache.commons.codec里的base64类,把字符串编码成base64后再传送。不过这样就要引入apache.commons.codec包,后来发现我们使用的jboss+tomcat环境里tomcat本身自带的catalina.jar包里已经有base64类了。所以直接使用,搞定。测试代码
import org.apache.catalina.util.Base64;

/**
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class TestCharSet
{

    public static void main(String[] args) 
    {
        Base64 base64 = new Base64();

        String temp_p="开会了";
        byte[] enbytes =Base64.encode(temp_p.getBytes());
        String temp=new String(enbytes);
        System.out.println(temp);
        String temp1=new String(Base64.decode(enbytes));
        System.out.print(temp1);
    }
}

运行结果:
v6q74cHL
开会了

本文地址:http://com.8s8s.com/it/it11206.htm