C# 將MSMQ訊息轉換成Json格式 【最佳化】

來源:互聯網
上載者:User

標籤:dictionary   最佳化   xml   c#   java   

C# 將MSMQ訊息轉換成Json格式  【最佳化】

轉換函式:

 private string ConvertToJSON(string label, string body)        {            //TODO: convert to json            string[] Lablelist = label.Split('|');            string[] Bodylist = body.Split('|');                           string JsonStr = "{\"";            NameValueCollection nvc = (NameValueCollection)ConfigurationManager.GetSection("LableName");            foreach (string key in nvc.AllKeys)            {                JsonStr = JsonStr + nvc[key] + "\":\"" + Lablelist[Convert.ToInt32(key)-1] + "\",\"";            }            NameValueCollection nvd = (NameValueCollection)ConfigurationManager.GetSection("BodyName");            foreach (string key in nvd.AllKeys)            {                JsonStr = JsonStr + nvd[key] + "\":\"" + Bodylist[Convert.ToInt32(key) - 1] + "\",\"";                    }            JsonStr = JsonStr.Remove(JsonStr.Length - 2, 2)+"}";            Console.WriteLine(JsonStr);             return JsonStr;        }

設定檔:

<?xml version="1.0" encoding="utf-8" ?><configuration>  <configSections>    <section name="LableName" type="System.Configuration.NameValueSectionHandler"/>    <!--以NameValue索引值/對的形式返回配置節中的資訊-->    <section name="BodyName" type="System.Configuration.NameValueSectionHandler"/>    <!--以Dictionary字典索引值對的形式返回配置節中的資訊-->  </configSections>    <startup>         <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />    </startup>     <LableName>      <add key="1" value="MessageID"/>      <add key="2" value="SendingBaseTag"/>      <add key="3" value="SendingMachineName"/>      <add key="4" value="MessageQueuePathName"/>      <add key="5" value="CustomField1"/>      <add key="6" value="CustomField2"/>    </LableName>  <BodyName>    <add key="1" value="DataMode"/>    <add key="2" value="DataModeID"/>    <add key="3" value="ExperimentID"/>    <add key="4" value="BasePenType"/>    <add key="5" value="BasePenTypeID"/>    <add key="6" value="MID"/>    <add key="7" value="StationTag"/>    <add key="8" value="DateTime"/>    <add key="9" value="Path1"/>    <add key="10" value="EquipmentID1"/>    <add key="11" value="Path2"/>    <add key="12" value="EquipmentID2"/>  </BodyName></configuration>

Thank you!

C# 將MSMQ訊息轉換成Json格式 【最佳化】

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.