加下面和数转化一下
public String GBK(String action)
    {
        try{
            byte[] b =action.getBytes("ISO8859_1");
            String convert =new String(b,"GB2312");
            return convert;
        }catch(Exception e){
            System.out.println("GBK Exception:"+e );
        }
        return null;
    }