中国IT动力,最新最全的IT技术教程
最新100篇 | 推荐100篇 | 专题100篇 | 排行榜 | 搜索 | 在线API文档 | 网通镜像
首 页 | 程序开发 | 操作系统 | 软件应用 | 图形图象 | 网络应用 | 精文荟萃 | 教育认证 | 硬件维护 | 未整理篇 | 站长教程
ASP JS PHP工程 ASP.NET 网站建设 UML J2EESUN .NET VC VB VFP 网络维护 数据库 DB2 SQL2000 Oracle Mysql
服务器 Win2000 Office C DreamWeaver FireWorks Flash PhotoShop 上网宝典 CorelDraw 协议大全 网络安全 微软认证
硬件维护  CPU  主板  硬盘  内存  显卡  显示器  键盘鼠标  声卡音箱  打印机  机箱电源  BIOS  网卡  C#  Java  Delphi  vs.net2005
  当前位置:> 程序开发 > 编程语言 > .NET > C#
一个用C#实现的简单httpserver
作者:llonely 时间:2001-12-17 11:34 出处:互联网 责编:chinaitpower
              摘要:一个用C#实现的简单httpserver

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

关闭本页
 
首页 | 投资与合作 | 服务条款 | 隐私政策 | 收藏本站 | 设为首页 | 新用户注册 | 免责声明 | 使用帮助
Copyright ©2005-2008 chinaitpower.com All rights reserved. www.chinaitpower.com 版权所有