1. 首页
  2. 数据库
  3. 其它
  4. C#调用Python的URL接口的示例

C#调用Python的URL接口的示例

上传者: 2020-12-17 07:17:25上传 PDF文件 57.68KB 热度 21次
VS2013的简单WInForm控件,通过WebRequest,WebResponse来访问,接收: private void btn_interface_Click(object sender, EventArgs e) { string url = "http://127.0.0.1:5000"; WebRequest wRequest = WebRequest.Create(url); wRequest.Method = "GET"; wRequest.ContentType = "text/html;charset=UTF-8
用户评论