一个用C#实现的简单http server(转)

来源:互联网 发布:canidae 淘宝代理 编辑:程序博客网 时间:2024/05/17 15:37
<script type="text/javascript"><!--google_ad_client = "pub-2947489232296736";/* 728x15, 创建于 08-4-23MSDN */google_ad_slot = "3624277373";google_ad_width = 728;google_ad_height = 15;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<script type="text/javascript"><!--google_ad_client = "pub-2947489232296736";/* 160x600, 创建于 08-4-23MSDN */google_ad_slot = "4367022601";google_ad_width = 160;google_ad_height = 600;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
http.cs  
----------------------------   
using System;
using System.Collections;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Threading;

class httpProcessor {

  private Socket s;
  private BufferedStream bs;
  private StreamReader sr;
  private StreamWriter sw;
  private String method;
  private String url;
  private String protocol;
  private Hashtable hashTable;

  public httpProcessor(Socket s) {
    this.s = s;
    hashTable = new Hashtable();
  }

  public void process() {
    NetworkStream ns = new NetworkStream(s, FileAccess.ReadWrite);
    bs = new BufferedStream(ns);
    sr = new StreamReader(bs);
    sw = new StreamWriter(bs);
    parseRequest();
    readHeaders();
    writeURL();
    s.Shutdown(SocketShutdown.SdBoth);
    ns.Close();
  }

  public void parseRequest() {
    String request = sr.ReadLine();
    string[] tokens = request.Split(new char[]{' '});
    method = tokens[0];
    url = tokens[1];
    protocol = tokens[2];
  }

  public void readHeaders() {
    String line;
    while((line = sr.ReadLine()) != null && line != "") {
      string[] tokens = line.Split(new char[]{':'});
      String name = tokens[0];
      String value = "";
      for(int i = 1; i < tokens.Length; i++) {
        value += tokens[i];
        if(i < tokens.Length - 1) tokens[i] += ":";
      }
      hashTable[name] = value;
    }
  }

  public void writeURL() {
    try {
      FileStream fs = new FileStream(url.Substring(1), FileMode.Open, FileAccess.Read);
      writeSuccess();
      BufferedStream bs2 = new BufferedStream(fs);
      byte[] bytes = new byte[4096];
      int read;
      while((read = bs2.Read(bytes, 0, bytes.Length)) != 0) {
        bs.Write(bytes, 0, read);
      }
      bs2.Close();
    } catch(FileNotFoundException) {
      writeFailure();
      sw.WriteLine("File not found: " + url);
    }
    sw.Flush();
  }

  public void writeSuccess() {
    sw.WriteLine("http/1.0 200 OK");
    sw.WriteLine("Connection: close");
    sw.WriteLine();
  }

  public void writeFailure() {
    sw.WriteLine("http/1.0 404 File not found");
    sw.WriteLine("Connection: close");
    sw.WriteLine();
  }
}

public class httpserver {

  // ============================================================
  // Data

  protected int port;

  // ============================================================
  // Constructor

  public httpserver() : this(80) {
  }

  public httpserver(int port) {
    this.port = port;
  }

  // ============================================================
  // Listener

  public void listen() {
    Socket listener = new Socket(0, SocketType.SockStream, ProtocolType.ProtTCP);
    IPAddress ipaddress = new IPAddress("127.0.0.1");
    IPEndPoint endpoint = new IPEndPoint(ipaddress, port);
    listener.Bind(endpoint);
    listener.Blocking = true;
    listener.Listen(-1);
    while(true) {
      Socket s = listener.Accept();
      httpProcessor processor = new httpProcessor(s);
      Thread thread = new Thread(new ThreadStart(processor.process));
      thread.Start();
    }
  }

  // ============================================================
  // Main

  public static int Main(String[] args) {
    httpserver httpserver;
    if(args.GetLength(0) > 0) {
      httpserver = new httpserver(args[0].ToUInt16());
    } else {
      httpserver = new httpserver();
    }
    Thread thread = new Thread(new ThreadStart(httpserver.listen));
    thread.Start();
    return 0;
  }
}




://www.dooba.cn/wangzhanyunying/wangzhanyouhua/" title="seo,搜索引擎优化">seover="window.status='正文--http://www.66of.com" target=_blank>一个用C#http://www.66of.com" target=_blank>实现的http://www.66of.com" target=_blank>简单http server(转)';return true">
<script type="text/javascript"><!--google_ad_client = "pub-2947489232296736";/* 728x15, 创建于 08-4-23MSDN */google_ad_slot = "3624277373";google_ad_width = 728;google_ad_height = 15;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<script type="text/javascript"><!--google_ad_client = "pub-2947489232296736";/* 160x600, 创建于 08-4-23MSDN */google_ad_slot = "4367022601";google_ad_width = 160;google_ad_height = 600;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
原创粉丝点击