溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

java怎么實(shí)現(xiàn)一個(gè)簡(jiǎn)單的Web服務(wù)器實(shí)例

發(fā)布時(shí)間:2021-04-17 14:11:10 來(lái)源:億速云 閱讀:360 作者:小新 欄目:編程語(yǔ)言

小編給大家分享一下java怎么實(shí)現(xiàn)一個(gè)簡(jiǎn)單的Web服務(wù)器實(shí)例,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

Web服務(wù)器也稱為超文本傳輸協(xié)議服務(wù)器,使用http與其客戶端進(jìn)行通信,基于java的web服務(wù)器會(huì)使用兩個(gè)重要的類,
java.net.Socket類和java.net.ServerSocket類,并基于發(fā)送http消息進(jìn)行通信。

這個(gè)簡(jiǎn)單的Web服務(wù)器會(huì)有以下三個(gè)類:

*HttpServer
*Request
*Response

應(yīng)用程序的入口在HttpServer類中,main()方法創(chuàng)建一個(gè)HttpServer實(shí)例,然后調(diào)用其await()方法,顧名思義,await()方法會(huì)在指定端口上等待HTTP請(qǐng)求,對(duì)其進(jìn)行處理,然后發(fā)送響應(yīng)信息回客戶端,在接收到關(guān)閉命令前,它會(huì)保持等待狀態(tài)。

該應(yīng)用程序僅發(fā)送位于指定目錄的靜態(tài)資源的請(qǐng)求,如html文件和圖像,它也可以將傳入到的http請(qǐng)求字節(jié)流顯示到控制臺(tái),但是,它并不發(fā)送任何頭信息到瀏覽器,如日期或者cookies等。

下面為這幾個(gè)類的源碼

Request:

package cn.com.server;
import java.io.InputStream;
public class Request {
	private InputStream input;
	private String uri;
	public Request(InputStream input){
		this.input=input;
	}
	public void parse(){
		//Read a set of characters from the socket 
		StringBuffer request=new StringBuffer(2048);
		int i;
		byte[] buffer=new byte[2048];
		try {
			i=input.read(buffer);
		}
		catch (Exception e) {
			e.printStackTrace();
			i=-1;
		}
		for (int j=0;j<i;j++){
			request.append((char)buffer[j]);
		}
		System.out.print(request.toString());
		uri=parseUri(request.toString());
	}
	public String parseUri(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;
	}
	public String getUri(){
		return this.uri;
	}
}

Request類表示一個(gè)HTTP請(qǐng)求,可以傳遞InputStream對(duì)象來(lái)創(chuàng)建Request對(duì)象,可以調(diào)用InputStream對(duì)象中的read()方法來(lái)讀取HTTP請(qǐng)求的原始數(shù)據(jù)。

上述源碼中的parse()方法用于解析Http請(qǐng)求的原始數(shù)據(jù),parse()方法會(huì)調(diào)用私有方法parseUrI()來(lái)解析HTTP請(qǐng)求的URI,除此之外,并沒(méi)有做太多的工作,parseUri()方法將URI存儲(chǔ)在變量uri中,調(diào)用公共方法getUri()會(huì)返回請(qǐng)求的uri。

Response:

package cn.com.server;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.OutputStream;
/** 
 * HTTP Response = Status-Line 
 *   *(( general-header | response-header | entity-header ) CRLF) 
 *   CRLF 
 *   [message-body] 
 *   Status-Line=Http-Version SP Status-Code SP Reason-Phrase CRLF 
 * 
 */
public class Response {
	private static final int BUFFER_SIZE=1024;
	Request request;
	OutputStream output;
	public Response(OutputStream output){
		this.output=output;
	}
	public void setRequest(Request request){
		this.request=request;
	}
	public void sendStaticResource()throws IOException{
		byte[] bytes=new byte[BUFFER_SIZE];
		FileInputStream fis=null;
		try {
			File file=new File(HttpServer.WEB_ROOT,request.getUri());
			if(file.exists()){
				fis=new FileInputStream(file);
				int ch=fis.read(bytes,0,BUFFER_SIZE);
				while(ch!=-1){
					output.write(bytes, 0, BUFFER_SIZE);
					ch=fis.read(bytes, 0, BUFFER_SIZE);
				}
			} else{
				//file not found 
				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>";
				output.write(errorMessage.getBytes());
			}
		}
		catch (Exception e) {
			System.out.println(e.toString());
		}
		finally{
			if(fis!=null){
				fis.close();
			}
		}
	}
}

Response對(duì)象在HttpServer類的await()方法中通過(guò)傳入套接字中獲取的OutputStream來(lái)創(chuàng)建。

Response類有兩個(gè)公共方法:setRequest()sendStaticResource() ,setRequest()方法會(huì)接收一個(gè)Request對(duì)象為參數(shù),sendStaticResource()方法用于發(fā)送一個(gè)靜態(tài)資源到瀏覽器,如Html文件。

HttpServer:

package cn.com.server;
import java.io.File;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.Socket;
public class HttpServer {
	/** 
   * WEB_ROOT is the directory where our html and other files reside. 
   * For this package,WEB_ROOT is the "webroot" directory under the 
   * working directory. 
   * the working directory is the location in the file system 
   * from where the java command was invoke. 
   */
	public static final String WEB_ROOT=System.getProperty("user.dir")+File.separator+"webroot";
	private static final String SHUTDOWN_COMMAND="/SHUTDOWN";
	private Boolean shutdown=false;
	public static void main(String[] args) {
		HttpServer server=new HttpServer();
		server.await();
	}
	public void await(){
		ServerSocket serverSocket=null;
		int port=8080;
		try {
			serverSocket=new ServerSocket(port,1,InetAddress.getByName("127.0.0.1"));
		}
		catch (Exception e) {
			e.printStackTrace();
			System.exit(0);
		}
		while(!shutdown){
			Socket socket=null;
			InputStream input=null;
			OutputStream output=null;
			try {
				socket=serverSocket.accept();
				input=socket.getInputStream();
				output=socket.getOutputStream();
				//create Request object and parse 
				Request request=new Request(input);
				request.parse();
				//create Response object 
				Response response=new Response(output);
				response.setRequest(request);
				response.sendStaticResource();
			}
			catch (Exception e) {
				e.printStackTrace();
				continue;
			}
		}
	}
}

這個(gè)類表示一個(gè)Web服務(wù)器,這個(gè)Web服務(wù)器可以處理對(duì)指定目錄的靜態(tài)資源的請(qǐng)求,該目錄包括由公有靜態(tài)變量final WEB_ROOT指明的目錄及其所有子目錄。

現(xiàn)在在webroot中創(chuàng)建一個(gè)html頁(yè)面,命名為index.html,源碼如下:

<!DOCTYPE html> 
<html> 
<head> 
<meta charset="UTF-8"> 
<title>Insert title here</title> 
</head> 
<body> 
  <h2>Hello World!</h2> 
</body> 
</html>

現(xiàn)在啟動(dòng)該WEB服務(wù)器,并請(qǐng)求index.html靜態(tài)頁(yè)面。

java怎么實(shí)現(xiàn)一個(gè)簡(jiǎn)單的Web服務(wù)器實(shí)例

所對(duì)應(yīng)的控制臺(tái)的輸出:

java怎么實(shí)現(xiàn)一個(gè)簡(jiǎn)單的Web服務(wù)器實(shí)例

如此,一個(gè)簡(jiǎn)單的http服務(wù)器便完成了。

看完了這篇文章,相信你對(duì)“java怎么實(shí)現(xiàn)一個(gè)簡(jiǎn)單的Web服務(wù)器實(shí)例”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI