zoukankan      html  css  js  c++  java
  • winform版简易http服务器

    传人url运行(url以/结尾,例如:http://localhost:8080/web/   监听这个url
    // 在浏览器 中输入 http://localhost:8080/web/?name=test或 http://localhost/web/?name=test,在浏览器就会出现Hello test 和一些Request头部相关信息.

    public void Run(string url) { using (HttpListener listerner = new HttpListener()) { listerner.AuthenticationSchemes = AuthenticationSchemes.Anonymous;//指定身份验证 Anonymous匿名访问 // listerner.Prefixes.Add("http://localhost:8080/web/"); listerner.Prefixes.Add(url); // listerner.Prefixes.Add("http://localhost/web/"); listerner.Start(); Console.WriteLine("WebServer Start Successed......."); while (RunOrStop) { //等待请求连接 //没有请求则GetContext处于阻塞状态 HttpListenerContext ctx = listerner.GetContext(); ctx.Response.StatusCode = 200;//设置返回给客服端http状态代码 string name = ctx.Request.QueryString["name"]; if (name != null) { Console.WriteLine(name); } //使用Writer输出http响应代码 using (StreamWriter writer = new StreamWriter(ctx.Response.OutputStream)) { Console.WriteLine("hello"); writer.WriteLine("<html><head><title>The WebServer Test</title></head><body>"); writer.WriteLine("<div style="height:20px;color:blue;text-align:center;"><p> hello {0}</p></div>", name); writer.WriteLine("<ul>"); foreach (string header in ctx.Request.Headers.Keys) { writer.WriteLine("<li><b>{0}:</b>{1}</li>", header, ctx.Request.Headers[header]); } writer.WriteLine("</ul>"); writer.WriteLine("</body></html>"); writer.Close(); ctx.Response.Close(); } } // listerner.Stop(); } }
  • 相关阅读:
    php将汉字转换为拼音和得到词语首字母(一)
    json字符串、json对象、数组之间的转换
    nginx配置详解(转)
    layer弹出层效果
    Ajax最详细的参数解析和场景应用
    bootstrap table使用指南
    JS的内置对象
    ThinkPHP导出CSV、Excel
    ThinkPHP的易忽视点小结
    sublime text 删除插件
  • 原文地址:https://www.cnblogs.com/wtujvk/p/4941535.html
Copyright © 2011-2022 走看看