zoukankan      html  css  js  c++  java
  • 转 winfrom如何通过http来进行通信,并且通过传递json格式的数据可接受json格式的数据

    string username = this.textBox1.Text;  
                string password = this.textBox2.Text;  
                string AA = HttpUtility.UrlEncode(username, Encoding.UTF8);  
                string bb = HttpUtility.UrlEncode(password, Encoding.UTF8);  
                ASCIIEncoding encoding = new ASCIIEncoding();  
                String content = "";  
                try  
                {  
                    string json = "{"uname":"" + AA + "","psw":"" + bb + "","param":"login"}";  
                    MessageBox.Show(json);  
                    JObject o = JObject.Parse(json);  
                    String param = o.ToString();  
                    byte[] data = encoding.GetBytes(param);  
                    HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create("http://192.168.10.30:8080/ss/aa.do?method=login");  
                    request.KeepAlive = false;  
                    request.Method = "POST";  
                    request.ContentType = "application/json;characterSet:UTF-8";  
                    request.ContentLength = data.Length;  
                    Stream sm = request.GetRequestStream();  
                    sm.Write(data, 0, data.Length);  
                    sm.Close();  
                    HttpWebResponse response = (HttpWebResponse)request.GetResponse();  
                    Stream streamResponse = response.GetResponseStream();  
                    StreamReader streamRead = new StreamReader(streamResponse, Encoding.UTF8);  
                    Char[] readBuff = new Char[256];  
                    int count = streamRead.Read(readBuff, 0, 256);  
                    while (count > 0)  
                    {  
                        String outputData = new String(readBuff, 0, count);  
                        content += outputData;  
                        count = streamRead.Read(readBuff, 0, 256);  
                    }  
                    response.Close();  
                    MessageBox.Show(content);  
                    string jsons = content;  
                    JObject jobject = JObject.Parse(jsons);  
                    JsonReader read = jobject.CreateReader();  
                    MessageBox.Show(read.ToString());  
                     
                    MessageBox.Show(jobject.ToString());  
                    //Dictionary<string, string>[] companies = content.Deserialize<Dictionary<string, string>[]>(content);  
                    //foreach (var item in companies)  
                    //{  
                    //    MessageBox.Show(item);  
                    //}  
      
                }  
                catch (Exception ex)  
                {  
                }  
                finally  
                {  
                   
                    
                }    
  • 相关阅读:
    我总结的存储过程编码规范 荣
    清空数据日志[转]
    GridView使用DataBind方法绑定数据时的分页问题[转]
    Datatable绑定GridView[转]
    javascript 刷新页面 关闭窗口[转]
    GridView和CheckBox结合[转]
    SQLServer 游标简介与使用说明[转]
    Windows Mobile 5中的新特性
    flash与后台数据交换方法整理3WebService篇
    netbeans+j2mepolish 环境下开发黑莓(BlackBerry) 程序
  • 原文地址:https://www.cnblogs.com/zhangwei99com/p/7756438.html
Copyright © 2011-2022 走看看