WPF和Windows Phone Post組裝函數



        private async void PostFun(Uri uri,string postdata)
        {
            //實現Post數據的訪問
            //postdata格式:phone=18712345678&password=12345678
            try
            {
                Dictionary<String, String> dic = UnpackData(postdata);
                FormUrlEncodedContent content = new FormUrlEncodedContent(dic);
                HttpResponseMessage response = await Helper.httpclient.PostAsync(uri, content);
                Helper.HttpFeed = await response.Content.ReadAsStringAsync();
            }
            catch(Exception ex)
            {
                MessageBox.Show(ex.Message);
            }

        }
        private Dictionary<String, String> UnpackData(string postdata)
        {
            //postdata格式:phone=18712345678&password=12345678
            //自動完成格式轉換功能
            Dictionary<String, String> dic = new Dictionary<string, string>();
            string []data=postdata.Split('&');
            for (int i = 0; i < data.Length;i++ )
            {
                string[] datadetails = data[i].Split('=');
                dic.Add(datadetails[0], datadetails[1]);
            }
            return dic;
        }

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章