91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java使用socket實現一個多線程web服務器的方法

發布時間:2020-10-05 14:05:33 來源:腳本之家 閱讀:158 作者:數據架構師 欄目:編程語言

除了服務器類,還包括請求類和響應類

請求類:獲取客戶的HTTP請求,分析客戶所需要的文件

響應類:獲得用戶請求后將用戶需要的文件讀出,添加上HTTP應答頭。發送給客戶端。

服務器處理類

package com.lp.app.webserver;

import java.io.*;
import java.net.*;

//使用Socket創建一個WEB服務器,本程序是多線程系統以提高反應速度。
class WebServer
{
 public static String WEBROOT = "";//默認目錄
 public static String defaultPage = "index.htm";//默認文件
 public static void main (String [] args) throws IOException
 {
 System.out.println ("服務器啟動...\n"); 
 //使用8080端口提供服務
 ServerSocket server = new ServerSocket (8080);
 while (true)
 {
  //阻塞,直到有客戶連接
  Socket sk = server.accept ();
  System.out.println ("Accepting Connection...\n");
  //啟動服務線程
  new WebThread (sk).start ();
 }
 }
}


//使用線程,為多個客戶端服務
class WebThread extends Thread
{
 private Socket sk;
 WebThread (Socket sk)
 {
  this.sk = sk;
 }

 //線程體
 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 ("關閉連接...\n");
  //最后釋放資源
  try{
   if (in != null)
   in.close ();
   if (out != null)
   out.close ();
   if (sk != null)
   sk.close ();
  }
  catch (IOException e)
  {
  }
  }
 }
}

請求類

package com.lp.app.webserver;

import java.io.*;
import java.net.*;

//獲取客戶的HTTP請求,分析客戶所需要的文件
public class Request{
 InputStream in = null;

 //獲得輸入流。這是客戶的請求數據。
 public Request(InputStream input){
 this.in = input;
 }

 //解析客戶的請求
 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());
 }

 //獲取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;
 }
}

響應類

package com.lp.app.webserver;

import java.io.*;
import java.net.*;

//獲得用戶請求后將用戶需要的文件讀出,添加上HTTP應答頭。發送給客戶端。
public class Response{
 OutputStream out = null;

 //發送請求的文件
 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" +
  "<h2>File Not Found</h2>";
  out.write(errorMessage.getBytes());
 }

 }
 catch (Exception e) {
 // 如不能實例化File對象,拋出異常。
 System.out.println(e.toString() );
 }
 finally {
 if (fis != null)
  fis.close();
 }
 }

 //獲取輸出流
 public Response(OutputStream output) {
 this.out = output;
}

}

以上這篇java使用socket實現一個多線程web服務器的方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

龙里县| 昭通市| 东乌珠穆沁旗| 长兴县| 玉溪市| 巧家县| 全州县| 昭通市| 柳州市| 沛县| 三原县| 合山市| 和平县| 安丘市| 钦州市| 北票市| 德保县| 阿瓦提县| 青神县| 右玉县| 咸丰县| 温宿县| 县级市| 木里| 阿尔山市| 兴安县| 凤台县| 道真| 元谋县| 河曲县| 东海县| 尖扎县| 新建县| 浮山县| 铜川市| 广西| 元阳县| 郯城县| 德化县| 赞皇县| 拉孜县|