码迷,mamicode.com
首页 > Windows程序 > 详细

C#NET使用指定的字符集将缓冲区编码为字符串

时间:2020-03-04 22:43:50      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:字符集   var   uil   turn   sum   app   current   stringbu   字符   

        /// <summary>
        ///     使用指定的字符集将缓冲区编码为字符串。
        /// </summary>
        /// <param name="buff">输入缓冲区</param>
        /// <param name="charset">字符集.</param>
        /// <returns>编码字符串.</returns>
        public static string EncodeString(byte[] buff, char[] charset) {
            int current = buff[0];
            var ret = new StringBuilder();
            for (int i = 1; i < buff.Length; i++) {
                current = (current << 8) + buff[i];
                while (current >= charset.Length) {
                    ret.Append(charset[current % charset.Length]);
                    current /= charset.Length;
                }
            }
            if (current != 0)
                ret.Append(charset[current % charset.Length]);
            return ret.ToString();
        }

 

C#NET使用指定的字符集将缓冲区编码为字符串

标签:字符集   var   uil   turn   sum   app   current   stringbu   字符   

原文地址:https://www.cnblogs.com/wz2988/p/12416528.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!