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

用Java實現簡單web服務器

編輯:關於JAVA

在Java的官方文檔中有一個實現的簡單的web服務器(網站服務器培訓 郵件服務器培訓 視訊服務器培訓 ),我把他稍加潤色,試一下一個簡單的web服務器,源碼如下:

import com.sun.Net.httpserver.*;

import Java.Net.*;

import Java.io.*;

class MyHandler implements HttpHandler

{

public void handle(HttpExchange t) throws IOException

{

//InputStream is = t.getRequestBody();

//read(is);

String response = "This is the response";

t.sendResponseHeaders(200,response.length());

OutputStream os = t.getResponseBody();

os.write(response.getBytes());

os.close();

}

}

public class MyServer

{

public static void main(String argv[]) //throws IOException

{

try

{

HttpServer server = HttpServer.create(new InetSocketAddress(8000),0);

server.createContext("/myapp",new MyHandler());

server.setExecutor(null);

server.start();

}

catch (IOException e)

{

e.printStackTrace();

}

}

}

你可以用http://localhost:8000/myapp做測試,當然頁面內容很簡單,只是顯示一行"This is response"的字符串,下一步,將繼續加強這個服務器的功能。http://www.Javaeye.com/topic/342377這個貼子的例子還是蠻有幫助作用的。

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