程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> [JAVA100例]050、一個簡單的Web服務器

[JAVA100例]050、一個簡單的Web服務器

編輯:關於JAVA

import java.io.*;
import java.net.*;
/**
* <p>Title: 發現HTTP內容和文件內容</p>
* <p>Description: 獲得用戶請求後將用戶需要的文件讀出,添加上HTTP應答頭。發送給客戶端。</p>
* <p>Copyright: Copyright (c) 2003</p>
* <p>Filename: Response.java</p>
* @version 1.0
*/
public class Response{
 OutputStream out = null;
/**
*<br>方法說明:發送信息
*<br>輸入參數:String ref 請求的文件名
*<br>返回類型:
*/
 public void Send(String ref) throws IOException {
  byte[] bytes = new byte[2048];
  FileInputStream fis = null;
  try {
    //構造文件
    File file = new File(WebServer.WEBROOT, ref);
    if (file.exists()) {
      //構造輸入文件流
      fis = new FileInputStream(file);
      int ch = fis.read(bytes, 0, 2048);
      //讀取文件
      String sBody = new String(bytes,0);
      //構造輸出信息
      String sendMessage = "HTTP/1.1 200 OK\r\n" +
        "Content-Type: text/html\r\n" +
        "Content-Length: "+ch+"\r\n" +
        "\r\n" +sBody;
      //輸出文件
      out.write(sendMessage.getBytes());
    }else {
      // 找不到文件
      String errorMessage = "HTTP/1.1 404 File Not Found\r\n" +
        "Content-Type: text/html\r\n" +
        "Content-Length: 23\r\n" +
        "\r\n" +
        "<h1>File Not Found</h1>";
      out.write(errorMessage.getBytes());
    }
  
  }
  catch (Exception e) {
    // 如不能實例化File對象,拋出異常。
    System.out.println(e.toString() );
  }
  finally {
    if (fis != null)
      fis.close();
  }
}
/**
*<br>方法說明:構造器,獲取輸出流
*<br>輸入參數:
*<br>返回類型:
*/
public Response(OutputStream output) {
  this.out = output;
}
}
import java.io.*;
import java.net.*;
/**
* <p>Title: 客戶請求分析</p>
* <p>Description: 獲取客戶的HTTP請求,分析客戶所需要的文件</p>
* <p>Copyright: Copyright (c) 2003</p>
* <p>Filename: Request.java</p>
* @version 1.0
*/
public class Request{
 InputStream in = null;
/**
*<br>方法說明:構造器,獲得輸入流。這時客戶的請求數據。
*<br>輸入參數:
*<br>返回類型:
*/
 public Request(InputStream input){
  this.in = input;
 }
/**
*<br>方法說明:解析客戶的請求
*<br>輸入參數:
*<br>返回類型:String 請求文件字符
*/
 public String parse() {
  //從Socket讀取一組數據
  StringBuffer requestStr = new StringBuffer(2048);
  int i;
  byte[] buffer = new byte[2048];
  try {
    i = in.read(buffer);
  }
  catch (IOException e) {
    e.printStackTrace();
    i = -1;
  }
  for (int j=0; j<i; j++) {
    requestStr.append((char) buffer[j]);
  }
  System.out.print(requestStr.toString());
  return getUri(requestStr.toString());
 }
/**
*<br>方法說明:獲取URI字符
*<br>輸入參數:String requestString 請求字符
*<br>返回類型:String URI信息字符
*/
 private String getUri(String requestString) {
  int index1, index2;
  index1 = requestString.indexOf(´ ´);
  if (index1 != -1) {
    index2 = requestString.indexOf(´ ´, index1 + 1);
    if (index2 > index1)
      return requestString.substring(index1 + 1, index2);
  }
  return null;
 }
}
import java.io.*;
import java.net.*;
import java.util.*;
/**
* <p>Title: WEB服務器</p>
* <p>Description: 使用Socket創建一個WEB服務器,本程序是多線程系統以提高反應速度。</p>
* <p>Copyright: Copyright (c) 2003</p>
* <p>Filename: WebServer.java</p>
* @version 1.0
*/
class WebServer
{
public static String WEBROOT = "";//默認目錄
public static String defaultPage = "index.htm";//默認文件
public static void main (String [] args) throws IOException
{//使用輸入的方式通知服務默認目錄位置,可用./root表示。
  if(args.length!=1){
   System.out.println("USE: java WebServer ./rootdir");
   return;
  }else{
   WEBROOT = args[0];
  }
  System.out.println ("Server starting...\n");
  //使用8000端口提供服務
  ServerSocket server = new ServerSocket (8000);
  while (true)
  {
  //阻塞,直到有客戶連接
   Socket sk = server.accept ();
   System.out.println ("Accepting Connection...\n");
   //啟動服務線程
   new WebThread (sk).start ();
  }
}
}
/**
* <p>Title: 服務子線程</p>
* <p>Description: 使用線程,為多個客戶端服務</p>
* <p>Copyright: Copyright (c) 2003</p>
* <p>Filename: </p>
* @author 杜江
* @version 1.0
*/
class WebThread extends Thread
{
private Socket sk;
WebThread (Socket sk)
{
 this.sk = sk;
}
/**
*<br>方法說明:線程體
*<br>輸入參數:
*<br>返回類型:
*/
public void run ()
{
 InputStream in = null;
 OutputStream out = null;
 try{
  in = sk.getInputStream();
  out = sk.getOutputStream();
   //接收來自客戶端的請求。
   Request rq = new Request(in);
   //解析客戶請求
   String sURL = rq.parse();
   System.out.println("sURL="+sURL);
   if(sURL.equals("/")) sURL = WebServer.defaultPage;
   Response rp = new Response(out);
   rp.Send(sURL);
  }catch (IOException e)
  {
    System.out.println (e.toString ());
  }
  finally
  {
   System.out.println ("Closing Connection...\n");
   //最後釋放資源
   try{
    if (in != null)
     in.close ();
    if (out != null)
     out.close ();
    if (sk != null)
     sk.close ();
   }
   catch (IOException e)
   {
   }
  }
}
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved