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;
                }
            }

  • 相关阅读:
    约束constraint
    多表查询
    多表关系
    vue 页面跳转的两种方式
    Java三大特性
    如何搭建vue搭建手脚架(vue-cli 3.0以上版本)
    Mysql高版本不兼容group by解决方案
    springboot整合shiro 报 This application has no explicit mapping for /error, so you are seeing this as a fallback. 错误
    使用Springboot整合redis与mysql
    Springboot登录拦截器
  • 原文地址:https://www.cnblogs.com/Traner/p/2819964.html
Copyright © 2011-2022 走看看