zoukankan      html  css  js  c++  java
  • WinForm 程序Post GEt web程序方法

      前段时间 做.net 程序要读取java的借口,但是选择了 java返回一个json串 然后.net程序加载时去读取 java的返回信息然后解析用来读取数据

      public static void PostDataByRifd()
            {
                try
                {
                    System.Net.HttpWebRequest req = (System.Net.HttpWebRequest)System.Net.WebRequest.Create("www.baidu.com");

                    byte[] requestBytes = Encoding.ASCII.GetBytes("");
                    req.Method = "post";
                    req.ContentType = "application/x-www-form-urlencoded";
                    req.ContentLength = requestBytes.Length;

                    Stream requestStream = req.GetRequestStream();
                    requestStream.Write(requestBytes, 0, requestBytes.Length);
                    requestStream.Close();
                    System.Net.HttpWebResponse res = (System.Net.HttpWebResponse)req.GetResponse();
                    StreamReader sr = new StreamReader(res.GetResponseStream(), Encoding.Default);
                    string backstr = sr.ReadToEnd();            
                    sr.Close();
                    res.Close();


                

                 

                }
                catch (Exception ex)
                {
                    throw ex;
                }
            }

  • 相关阅读:
    伪静态规则写法RewriteRule-htaccess详细语法使用
    事务的操作
    layer 模版使用
    追加下拉框的自动生成
    PHP自动生成前端的表单框架
    MySQL高效获取记录总数
    引用JS表单验证大全 以后方便查看用
    关于left join连接查询 两张表里有同名字段的问题
    详解clientHeight、offsetHeight、scrollHeight
    php防止SQL注入详解及防范
  • 原文地址:https://www.cnblogs.com/Traner/p/2819964.html
Copyright © 2011-2022 走看看