91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C# 基礎數據與Byte

發布時間:2020-07-30 10:36:28 來源:網絡 閱讀:635 作者:Aonaufly 欄目:編程語言

基礎數據與Byte數據的轉換在Socket通訊中用的非常的多.我想任何Game都不大會希望直接用XML和Json字符串直接進行數據傳遞,而是在Client端和Server端對基礎數據進行解析.當然,如果你執行用"Encoding.UTF8.GetBytes"之類的話,我也沒有辦法.C# 基礎數據與Byte好了,進入正題:在C#中要進行基礎數據和Byte的轉換要用到:"BitConverter"類

這里我用了一個實例:

BitConverToByte : 將基礎類型變成Bytes[]

BitBitConverterTest : 將Bytes[]解析成基礎類型

另外:簡易的模仿一下Socket通訊協議(注意:只是簡易,真正用在Socket里面,需要另外加協議號等等): 

包頭只有一個 int32類型用于包體的length

包體:

    [

        int32 : 內容的長度

        string : 內容

    ]

    int32 , 這里故意加的(免得成光棍內容)( 在實際Socket中 , 你可以表示年齡啥的!!!)

代碼如下:

BitConverToByte :

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BitBitConverterTest.ainy
{
    /// <summary>
    /// 將內容變成規則的二進制數據,以便發送
    /// </summary>
    public class BitConverToByte
    {
        private readonly string context;
        private readonly Int32 mark;
        public BitConverToByte( string context , Int32 mark )
        {
            this.context = context;
            this.mark = mark;
        }
        /// <summary>
        /// 返回二進制數組
        /// </summary>
        /// <returns> int32長度 + context + mark</returns>
        public byte[] GetContextBytes()
        {
            // 內容的二進制
            byte[] myContext = Encoding.UTF8.GetBytes(this.context);
            // 標示的二進制( 測試BitConverter )
            byte[] myMark = BitConverter.GetBytes(this.mark);
            // 關于內容長度 myContext + myMark
            byte[] myBytesLenght = BitConverter.GetBytes(myContext.Length + myMark.Length);
            // 關于內容的長度
            byte[] myContextLength = BitConverter.GetBytes(myContext.Length);
            byte[] reslut = new byte[myContext.Length + myContextLength.Length + myMark.Length + myBytesLenght.Length];
            myBytesLenght.CopyTo(reslut, 0);
            myContextLength.CopyTo(reslut, myBytesLenght.Length);
            myContext.CopyTo(reslut, myBytesLenght.Length + myContextLength.Length);
            myMark.CopyTo(reslut, myBytesLenght.Length + myContext.Length + myContextLength.Length);
            return reslut;
        }
    }
}

BitBitConverterTest :

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BitBitConverterTest.ainy
{
    /// <summary>
    /// 將二進制轉化為內容
    /// </summary>
    public class BitConverToContext
    {
        //整個二進制數據
        private readonly byte[] target;
        //文本二進制(String)數據
        public string Context { get ; private set; }
        //標記數據
        public Int32 Mark { get; private set; }
        //文本 "I Love U"的二進制數據
        public byte[] ContextBytes { get; private set; }
        public BitConverToContext( byte[] target )
        {
            this.target = target;
            this.AnalysisFromBytes();
        }
        /// <summary>
        /// 解析Byte[]
        /// int + [string的length + string] + int
        /// </summary>
        private void AnalysisFromBytes() {
            // 得到文本的總長度 : ( 文本長度 + Context.Length + Mark.Length )
            Int32 contextLength = BitConverter.ToInt32(this.target, 0);
            // 得到文本的長度
            Int32 len = BitConverter.ToInt32(this.target, 4);
            // 獲取文本
            this.Context = BitConverter.ToString(this.target, 8, len);
            // 獲取后面的Mark
            this.Mark = BitConverter.ToInt32(this.target, 8 + len);
            this.ContextBytes = this.target.Skip(8).Take(len).ToArray();
        }
    }
}

測試:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BitBitConverterTest.ainy;

namespace BitBitConverterTest
{
    class Program
    {
        static void Main(string[] args)
        {
            BitConverToByte bitConverToByte = new BitConverToByte("I Love U", 1314);
            BitConverToContext bitConverToContext = new BitConverToContext(bitConverToByte.GetContextBytes());
            Console.WriteLine("內容二進制:{0} , 內容:{1} , 標記:{2}", bitConverToContext.Context, Encoding.UTF8.GetString(bitConverToContext.ContextBytes), bitConverToContext.Mark);
            Console.ReadKey();
        }
    }
}

結果:

C# 基礎數據與Byte

附件:http://down.51cto.com/data/2367312
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

开江县| 县级市| 黑龙江省| 宁武县| 克山县| 金平| 册亨县| 云霄县| 尉犁县| 兴海县| 巴彦淖尔市| 大关县| 辽阳市| 白银市| 五常市| 周口市| 岳普湖县| 监利县| 太白县| 喀喇| 鲜城| 景洪市| 六枝特区| 灵石县| 视频| 买车| 曲靖市| 无为县| 化隆| 莎车县| 威信县| 南昌县| 海丰县| 古田县| 斗六市| 雷州市| 桐乡市| 伊宁县| 长海县| 电白县| 宣武区|