博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一段C#代码,模拟IIS功能。
阅读量:5281 次
发布时间:2019-06-14

本文共 1264 字,大约阅读时间需要 4 分钟。

using System;using System.Collections.Generic;using System.Text;using System.Net;using System.IO;namespace HostConsole{    class Program    {        static void Main(string[] args)        {            if (HttpListener.IsSupported)            {                HttpListener listener = new HttpListener();                listener.Prefixes.Add("http://+:8080/");                listener.Start();                while (true)                {                    Console.Write(DateTime.Now.ToString());                    HttpListenerContext context = listener.GetContext();                    string page = context.Request.Url.LocalPath.Replace("/","");                    String query = context.Request.Url.Query.Replace("?", "");                    StreamReader sr = new StreamReader(context.Request.InputStream);                    Console.WriteLine(sr.ReadToEnd());                    Console.WriteLine("接收到请求:{0}?{1}", page, query);                    StreamWriter sw = new StreamWriter(context.Response.OutputStream);                    sw.Write("Hello World!");                    sw.Flush();                    context.Response.Close();                }            }        }    }}

  

转载于:https://www.cnblogs.com/Soar1991/archive/2012/03/29/CSharp-Model-IIS.html

你可能感兴趣的文章
MVC4.0 利用IActionFilter实现简单的后台操作日志功能
查看>>
rotate the clock
查看>>
bugku 变量
查看>>
数据库01 /Mysql初识以及基本命令操作
查看>>
数据库02 /MySQL基础数据类型以及多表之间建立联系
查看>>
Python并发编程04/多线程
查看>>
CF461B Appleman and Tree
查看>>
CF219D Choosing Capital for Treeland
查看>>
杂七杂八的小笔记本
查看>>
51Nod1353 树
查看>>
CF1215E Marbles
查看>>
BZOJ2339 HNOI2011卡农(动态规划+组合数学)
查看>>
octave基本操作
查看>>
axure学习点
查看>>
WPF文本框只允许输入数字[转]
查看>>
dom4j 通用解析器,解析成List<Map<String,Object>>
查看>>
第一个项目--用bootstrap实现美工设计的首页
查看>>
使用XML传递数据
查看>>
TYVJ.1864.[Poetize I]守卫者的挑战(概率DP)
查看>>
0925 韩顺平java视频
查看>>