wuwu,怎么没人回呢,是不是我写的不够明白阿

解决方案 »

  1.   

    String s2="\\u"+ Integer.toHexString((int)bytes[0]) +Integer.toHexString((int)bytes[1]);
    应改成
     String s2= new String(bytes,"GBK");
     就OK了!试试看!
      

  2.   

    针对jsp和servlet:
    解决办法:
    第一:
    在jsp页面加入:
    <%@ page contentType="text/html; charset=gb2312" %>
    或者在servlet里面
      public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        response.setContentType("text/html; charset=gb2312");//这是重要的
    上面的如果在不行就用如下的方法在数据入库前进行调用:
    public static String UnicodeToChinese(String s){
      try{
         if(s==null||s.equals("")) return "";
         String newstring=null;
         newstring=new String(s.getBytes("ISO8859_1"),"gb2312");
         return newstring;
        }
      catch(UnsupportedEncodingException e)
      {
      return s;
      }
      }public static String ChineseToUnicode(String s){
      try{
      if(s==null||s.equals("")) return "";
      String newstring=null;
      newstring=new String(s.getBytes("gb2312"),"ISO8859_1");
       return newstring;
      }
      catch(UnsupportedEncodingException e)
      {
      return s;
     }
      }3:)解决weblogic/webshpere中文问题:
    在web.xml文件中需要配置中文环境。r如下:
    <context-param>
      <param-name>weblogic.httpd.inputCharset./*</param-name>
      <param-value>GB2312</param-value>
    </context-param>
      

  3.   

    你换算错了,应该是:byte bytes[]={-61,-15};
      

  4.   

    楼主,你搞错了吧
    民转换为byte数组应该是-61 -15阿,你使用
        byte al[] = s1.getBytes();
        for(int i=0;i<al.length;i++) {
          System.out.println(al[i]);
        }
    输出看看就知道了
    至于转换,使用楼上即可,不过最好使用"GB2312"
      

  5.   

    unicode码并不是字节码,将6c11做为字节码是不对的