当前位置: 代码迷 >> BlackBerry >> 黑莓经过blowser push过来的title中文会乱码
  详细解决方案

黑莓经过blowser push过来的title中文会乱码

热度:208   发布时间:2016-04-28 08:46:29.0
黑莓通过blowser push过来的title中文会乱码
无论是通过NONPAP方式
                string httpURL = "http://" + BESAddress + ":" + BESWebserverListenPort
                            + "/push?DESTINATION=" + pushPin + "&PORT=" + pushPort
                            + "&REQUESTURI=/";

还是通过PAP方式


设置它的X-RIM-Push-Title为中文  在手机上收到的消息标题都是乱码  里面的内容是正常的  

改了PAP协议的整个的字符编码为UTF-8都没用 

搜遍了都没找到答案  真的一点思路都没有了   求助啊  
不知道各位是怎么做黑莓推送的  送过来的标题是中文么
------解决方案--------------------
public string Encode(string str)
        {
            try
            {
                byte[] bytes = Encoding.GetEncoding("utf-8").GetBytes(str);
                string result = "=?UTF-8?B?" + Convert.ToBase64String(bytes) + "?=";
                return result;
            }
            catch (Exception ex)//(UnsupportedEncodingException ex)
            {
                return null;
            }
        }


调用这个函数转换一下编码就好了,注意字数最多为15个字
  相关解决方案