http伺服器——java版
最簡單的http伺服器,可下載原始碼:http://download.csdn.net/detail/ajaxhu/6356885
大概介紹一下原理吧,瀏覽器開啟網頁可以簡單分為3個階段:
1.通過socket向伺服器傳送一個符合一定格式的請求字串(裡面包含了使用者輸入的網址),比如:
Accept | text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 |
Accept-Encoding | gzip, deflate |
Accept-Language | zh-cn,zh;q=0.8,en-us;q=0.5,en;q=0.3 |
Connection | keep-alive |
Host | localhost:8001 |
User-Agent | Mozilla/5.0 (Windows NT 6.1; rv:22.0) Gecko/20100101 Firefox/22.0 |
2.伺服器收到瀏覽器的請求字串,解析出使用者所請求的網址,網址其實對應伺服器中的檔案。
例如 http:\\www.demo.com其實對應伺服器裡的 http:\\www.demo.com\index.html,伺服器會將index.html這個檔案讀取到byte陣列中,並加上頭資訊(也是字串),返回給傳送請求的瀏覽器。
3.瀏覽器接收到伺服器返回的位元組流,根據返回的頭資訊,判斷返回的byte陣列原始的資料型別(網頁、圖片、其他),例如返回的頭資訊如下:
Content-Type | text/html |
說明返回的byte陣列原來是html頁面,瀏覽器會解析html頁面,顯示資料。
如果伺服器返回的頭資訊如下:
Content-Type | image/jpeg |
下面給出原始碼:
注:1.要執行程式,需要在同目錄下新建webapp資料夾,將想執行的網站放入(暫時只支援html,jpg,gif,png)
2.程式執行引數:可以無引數執行,預設繫結80埠,有可能會衝突。可新增一個引數設定埠,例如:java -jar MyHtmlServer.jar 8001
8001為繫結的埠號。
3.執行程式後,在瀏覽器中輸入 http://localhost:埠號/資源路徑即可。例如繫結的是8001埠,在webapp資料夾下有index.html檔案,現在需要訪問這個檔案,在瀏覽器中輸入:http://localhost:8001/index.html 即可訪問。如果繫結的是80埠,可直接寫:http://localhost/index.html,瀏覽器預設使用80作為伺服器埠。
原始碼:
- import java.io.BufferedReader;
- import java.io.ByteArrayOutputStream;
- import java.io.File;
- import java.io.FileInputStream;
- import java.io.IOException;
- import java.io.InputStream;
- import java.io.InputStreamReader;
- import java.io.InterruptedIOException;
- import java.io.OutputStream;
- import java.net.ServerSocket;
- import java.net.Socket;
- public class MyHtmlServer {
- public static void main(String[] args) throws IOException {
- int port=80;
- if(args.length>0)
- port=Integer.valueOf(args[0]);
- new MyHtmlServer().start(port);
- }
- /**
- * 在指定埠啟動http伺服器
- * @param port 指定的埠
- * @throws IOException
- */
- public void start(int port) throws IOException {
- ServerSocket server = new ServerSocket(port);
- System.out.println("server start at "+port+"...........");
- while (true) {
- Socket client = server.accept();
- ServerThread serverthread = new ServerThread(client);
- serverthread.start();
- }
- }
- /**
- * 伺服器響應執行緒,每收到一次瀏覽器的請求就會啟動一個ServerThread執行緒
- * @author
- *
- */
- class ServerThread extends Thread {
- Socket client;
- public ServerThread(Socket client) {
- this.client = client;
- }
- /**
- * 讀取檔案內容,轉化為byte陣列
- * @param filename 檔名
- * @return
- * @throws IOException
- */
- public byte[] getFileByte(String filename) throws IOException
- {
- ByteArrayOutputStream baos=new ByteArrayOutputStream();
- File file=new File(filename);
- FileInputStream fis=new FileInputStream(file);
- byte[] b=new byte[1000];
- int read;
- while((read=fis.read(b))!=-1)
- {
- baos.write(b,0,read);
- }
- fis.close();
- baos.close();
- return baos.toByteArray();
- }
- /**
- * 分析http請求中的url,分析使用者請求的資源,並將請求url規範化
- * 例如請求 "/"要規範成"/index.html","/index"要規範成"/index.html"
- * @param queryurl 使用者原始的url
- * @return 規範化的url,即為使用者請求資源的路徑
- */
- private String getQueryResource(String queryurl)
- {
- String queryresource=null;
- int index=queryurl.indexOf('?');
- if(index!=-1)
- {
- queryresource=queryurl.substring(0,queryurl.indexOf('?'));
- }
- else
- queryresource=queryurl;
- index=queryresource.lastIndexOf("/");
- if(index+1==queryresource.length())
- {
- queryresource=queryresource+"index.html";
- }
- else
- {
- String filename=queryresource.substring(index+1);
- if(!filename.contains("."))
- queryresource=queryresource+".html";
- }
- return queryresource;
- }
- /**
- * 根據使用者請求的資源型別,設定http響應頭的資訊,主要是判斷使用者請求的檔案型別(html、jpg...)
- * @param queryresource
- * @return
- */
- private String getHead(String queryresource)
- {
- String filename="";
- int index=queryresource.lastIndexOf("/");
- filename=queryresource.substring(index+1);
- String[] filetypes=filename.split("\\.");
- String filetype=filetypes[filetypes.length-1];
- if(filetype.equals("html"))
- {
- return "HTTP/1.0200OK\n"+"Content-Type:text/html\n" + "Server:myserver\n" + "\n";
- }
- else if(filetype.equals("jpg")||filetype.equals("gif")||filetype.equals("png"))
- {
- return "HTTP/1.0200OK\n"+"Content-Type:image/jpeg\n" + "Server:myserver\n" + "\n";
- }
- else return null;
- }
- @Override
- public void run() {
- InputStream is;
- try {
- is = client.getInputStream();
- BufferedReader br = new BufferedReader(
- new InputStreamReader(is));
- int readint;
- char c;
- byte[] buf = new byte[1000];
- OutputStream os = client.getOutputStream();
- client.setSoTimeout(50);
- byte[] data = null;
- String cmd = "";
- String queryurl = "";
- int state = 0;
- String queryresource;
- String head;
- while (true) {
- readint = is.read();
- c = (char) readint;
- boolean space=Character.isWhitespace(readint);
- switch (state) {
- case 0:
- if (space)
- continue;
- state = 1;
- case 1:
- if (space) {
- state=2;
- continue;
- }
- cmd+=c;
- continue;
- case 2:
- if(space)
- continue;
- state=3;
- case 3:
- if(space)
- break;
- queryurl+=c;
- continue;
- }
- break;
- }
- queryresource=getQueryResource(queryurl);
- head=getHead(queryresource);
- while (true) {
- try {
- if ((readint = is.read(buf)) > 0) {
- // System.out.write(buf);
- } else if (readint < 0)
- break;
- } catch (InterruptedIOException e) {
- data = getFileByte("webapp"+queryresource);
- }
- if (data != null) {
- os.write(head.getBytes("utf-8"));
- os.write(data);
- os.close();
- break;
- }
- }
- } catch (IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
- }
- }
import java.io.BufferedReader;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.InterruptedIOException;
import java.io.OutputStream;
import java.net.ServerSocket;
import java.net.Socket;
public class MyHtmlServer {
public static void main(String[] args) throws IOException {
int port=80;
if(args.length>0)
port=Integer.valueOf(args[0]);
new MyHtmlServer().start(port);
}
/**
* 在指定埠啟動http伺服器
* @param port 指定的埠
* @throws IOException
*/
public void start(int port) throws IOException {
ServerSocket server = new ServerSocket(port);
System.out.println("server start at "+port+"...........");
while (true) {
Socket client = server.accept();
ServerThread serverthread = new ServerThread(client);
serverthread.start();
}
}
/**
* 伺服器響應執行緒,每收到一次瀏覽器的請求就會啟動一個ServerThread執行緒
* @author
*
*/
class ServerThread extends Thread {
Socket client;
public ServerThread(Socket client) {
this.client = client;
}
/**
* 讀取檔案內容,轉化為byte陣列
* @param filename 檔名
* @return
* @throws IOException
*/
public byte[] getFileByte(String filename) throws IOException
{
ByteArrayOutputStream baos=new ByteArrayOutputStream();
File file=new File(filename);
FileInputStream fis=new FileInputStream(file);
byte[] b=new byte[1000];
int read;
while((read=fis.read(b))!=-1)
{
baos.write(b,0,read);
}
fis.close();
baos.close();
return baos.toByteArray();
}
/**
* 分析http請求中的url,分析使用者請求的資源,並將請求url規範化
* 例如請求 "/"要規範成"/index.html","/index"要規範成"/index.html"
* @param queryurl 使用者原始的url
* @return 規範化的url,即為使用者請求資源的路徑
*/
private String getQueryResource(String queryurl)
{
String queryresource=null;
int index=queryurl.indexOf('?');
if(index!=-1)
{
queryresource=queryurl.substring(0,queryurl.indexOf('?'));
}
else
queryresource=queryurl;
index=queryresource.lastIndexOf("/");
if(index+1==queryresource.length())
{
queryresource=queryresource+"index.html";
}
else
{
String filename=queryresource.substring(index+1);
if(!filename.contains("."))
queryresource=queryresource+".html";
}
return queryresource;
}
/**
* 根據使用者請求的資源型別,設定http響應頭的資訊,主要是判斷使用者請求的檔案型別(html、jpg...)
* @param queryresource
* @return
*/
private String getHead(String queryresource)
{
String filename="";
int index=queryresource.lastIndexOf("/");
filename=queryresource.substring(index+1);
String[] filetypes=filename.split("\\.");
String filetype=filetypes[filetypes.length-1];
if(filetype.equals("html"))
{
return "HTTP/1.0200OK\n"+"Content-Type:text/html\n" + "Server:myserver\n" + "\n";
}
else if(filetype.equals("jpg")||filetype.equals("gif")||filetype.equals("png"))
{
return "HTTP/1.0200OK\n"+"Content-Type:image/jpeg\n" + "Server:myserver\n" + "\n";
}
else return null;
}
@Override
public void run() {
InputStream is;
try {
is = client.getInputStream();
BufferedReader br = new BufferedReader(
new InputStreamReader(is));
int readint;
char c;
byte[] buf = new byte[1000];
OutputStream os = client.getOutputStream();
client.setSoTimeout(50);
byte[] data = null;
String cmd = "";
String queryurl = "";
int state = 0;
String queryresource;
String head;
while (true) {
readint = is.read();
c = (char) readint;
boolean space=Character.isWhitespace(readint);
switch (state) {
case 0:
if (space)
continue;
state = 1;
case 1:
if (space) {
state=2;
continue;
}
cmd+=c;
continue;
case 2:
if(space)
continue;
state=3;
case 3:
if(space)
break;
queryurl+=c;
continue;
}
break;
}
queryresource=getQueryResource(queryurl);
head=getHead(queryresource);
while (true) {
try {
if ((readint = is.read(buf)) > 0) {
// System.out.write(buf);
} else if (readint < 0)
break;
} catch (InterruptedIOException e) {
data = getFileByte("webapp"+queryresource);
}
if (data != null) {
os.write(head.getBytes("utf-8"));
os.write(data);
os.close();
break;
}
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
相關文章
- 使用 Java 11 HTTP Client API 實現 HTTP/2 伺服器推送JavaHTTPclientAPI伺服器
- 使用Java Socket手擼一個http伺服器JavaHTTP伺服器
- 多執行緒Http代理伺服器 Java實現執行緒HTTP伺服器Java
- Java Web伺服器部署指南(windows版)JavaWeb伺服器Windows
- java搭建http代理伺服器詳細教程(含程式碼)JavaHTTP伺服器
- http代理伺服器HTTP伺服器
- 使用Java程式通過http post訪問ABAP Netweaver伺服器JavaHTTP伺服器
- Java 用jetty實現HTTP伺服器 獲取 Get 請求體JavaJettyHTTP伺服器
- java http 工具類JavaHTTP
- Dapr Java Http 呼叫JavaHTTP
- Java例項開發05-02 簡單的HTTP伺服器端JavaHTTP伺服器
- 拼多多版http-serverHTTPServer
- spa-to-http:輕量級零配置SPA HTTP 伺服器HTTP伺服器
- Java 配置 HTTP/Socks 代理JavaHTTP
- 使用Python搭建http伺服器PythonHTTP伺服器
- WEB伺服器之HTTP協議Web伺服器HTTP協議
- Linux Http代理伺服器 TinyproxyLinuxHTTP伺服器
- golang http 伺服器程式設計GolangHTTP伺服器程式設計
- 使用nginx搭建http代理伺服器NginxHTTP伺服器
- Web伺服器、應用程式伺服器、HTTP伺服器區別Web伺服器HTTP
- 訪問 laradock 伺服器內部 http 伺服器伺服器HTTP
- 在伺服器上使用 smart http 搭建 Git 伺服器伺服器HTTPGit
- 簡單的零配置命令http伺服器:http-server入門HTTP伺服器Server
- Golang如何實現HTTP代理伺服器GolangHTTP伺服器
- dotnetcore Http伺服器研究(一)NetCoreHTTP伺服器
- 與HTTP協作的Web伺服器HTTPWeb伺服器
- IIS搭建的http檔案伺服器HTTP伺服器
- HTTP代理伺服器的三個特性HTTP伺服器
- netty寫一個http伺服器NettyHTTP伺服器
- HTTP/2 伺服器推送(Server Push)教程HTTP伺服器Server
- python實戰--Http代理伺服器PythonHTTP伺服器
- Java實現Http請求JavaHTTP
- java傳送http請求JavaHTTP
- PHP HTTP 500 - 內部伺服器錯誤PHPHTTP伺服器
- 網路通訊6:搭建HTTP伺服器HTTP伺服器
- Netty 實現HTTP檔案伺服器NettyHTTP伺服器
- HTTP 代理伺服器技術選型之旅HTTP伺服器
- 【windows socket+HTTP伺服器客戶端】WindowsHTTP伺服器客戶端