博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jdk6 HttpServer的使用
阅读量:5824 次
发布时间:2019-06-18

本文共 3644 字,大约阅读时间需要 12 分钟。

hot3.png

jdk6 HttpServer的使用 博客分类: java

   JDK6提供了一个简单的Http Server API,据此我们可以构建自己的嵌入式Http Server,它支持Http和Https协议,提供了HTTP1.1的部分实现,没有被实现的那部分可以通过扩展已有的Http Server API来实现,程序员必须自己实现HttpHandler接口,HttpServer会调用HttpHandler实现类的回调方法来处理客户端请求,在这里,我们把一个Http请求和它的响应称为一个交换,包装成HttpExchange类,HttpServer负责将HttpExchange传给HttpHandler实现类的回调方法

 

   我想开发一个j2se的小程序,它能接受网页传来的参数,并对传来参数做些处理。我希望这个小程序即可能接受网页传过来的参数,也能接受OutputStream流传来参数,JDK6新特性能够实现。

Java代码  
收藏代码
  1. package com.tdt.server.httpserver;  
  2.   
  3. import java.io.BufferedReader;  
  4. import java.io.IOException;  
  5. import java.io.InputStream;  
  6. import java.io.InputStreamReader;  
  7. import java.io.OutputStream;  
  8. import java.net.InetSocketAddress;  
  9.   
  10. import com.sun.net.httpserver.HttpExchange;  
  11. import com.sun.net.httpserver.HttpHandler;  
  12. import com.sun.net.httpserver.HttpServer;  
  13. import com.sun.net.httpserver.spi.HttpServerProvider;  
  14.   
  15. /** 
  16.  * @project SimpleHttpServer 
  17.  * @author sunnylocus 
  18.  * @vresion 1.0 2009-9-2 
  19.  * @description  自定义的http服务器 
  20.  */  
  21. public class MyHttpServer {  
  22.     //启动服务,监听来自客户端的请求  
  23.     public static void httpserverService() throws IOException {  
  24.         HttpServerProvider provider = HttpServerProvider.provider();  
  25.         HttpServer httpserver =provider.createHttpServer(new InetSocketAddress(6666), 100);//监听端口6666,能同时接 受100个请求  
  26.         httpserver.createContext("/myApp"new MyHttpHandler());   
  27.         httpserver.setExecutor(null);  
  28.         httpserver.start();  
  29.         System.out.println("server started");  
  30.     }  
  31.     //Http请求处理类  
  32.     static class MyHttpHandler implements HttpHandler {  
  33.         public void handle(HttpExchange httpExchange) throws IOException {  
  34.             String responseMsg = "ok";   //响应信息  
  35.             InputStream in = httpExchange.getRequestBody(); //获得输入流  
  36.             BufferedReader reader = new BufferedReader(new InputStreamReader(in));  
  37.             String temp = null;  
  38.             while((temp = reader.readLine()) != null) {  
  39.                 System.out.println("client request:"+temp);  
  40.             }  
  41.             httpExchange.sendResponseHeaders(200, responseMsg.length()); //设置响应头属性及响应信息的长度  
  42.             OutputStream out = httpExchange.getResponseBody();  //获得输出流  
  43.             out.write(responseMsg.getBytes());  
  44.             out.flush();  
  45.             httpExchange.close();                                 
  46.               
  47.         }  
  48.     }  
  49.     public static void main(String[] args) throws IOException {  
  50.         httpserverService();  
  51.     }  
  52. }  

 

二、测试类

Java代码  
收藏代码
  1. package com.tdt.server.test;  
  2.   
  3. import java.io.BufferedReader;  
  4. import java.io.IOException;  
  5. import java.io.InputStream;  
  6. import java.io.InputStreamReader;  
  7. import java.io.OutputStream;  
  8. import java.net.HttpURLConnection;  
  9. import java.net.URL;  
  10. import java.util.concurrent.ExecutorService;  
  11. import java.util.concurrent.Executors;  
  12.   
  13. /** 
  14.  * @project SimpleHttpServer 
  15.  * @author sunnylocus 
  16.  * @vresion 1.0 2009-9-2 
  17.  * @description 测试类   
  18.  */  
  19. public class Test {  
  20.     public static void main(String[] args) {  
  21.         ExecutorService exec = Executors.newCachedThreadPool();  
  22.         // 测试并发对MyHttpServer的影响  
  23.         for (int i = 0; i < 20; i++) {  
  24.             Runnable run = new Runnable() {  
  25.                 public void run() {  
  26.                     try {  
  27.                         startWork();  
  28.                     } catch (IOException e) {  
  29.                         e.printStackTrace();  
  30.                     }  
  31.                 }  
  32.             };  
  33.             exec.execute(run);  
  34.         }  
  35.         exec.shutdown();// 关闭线程池  
  36.     }  
  37.   
  38.     public static void startWork() throws IOException {  
  39.         URL url = new URL("http://127.0.0.1:6666/myApp");  
  40.         HttpURLConnection urlConn = (HttpURLConnection) url.openConnection();  
  41.         urlConn.setDoOutput(true);  
  42.         urlConn.setDoInput(true);  
  43.         urlConn.setRequestMethod("POST");  
  44.         // 测试内容包  
  45.         String teststr = "this is a test message";  
  46.         OutputStream out = urlConn.getOutputStream();  
  47.         out.write(teststr.getBytes());  
  48.         out.flush();  
  49.         while (urlConn.getContentLength() != -1) {  
  50.             if (urlConn.getResponseCode() == 200) {  
  51.                 InputStream in = urlConn.getInputStream();  
  52.                 BufferedReader reader = new BufferedReader(new InputStreamReader(in));  
  53.                 String temp = "";  
  54.                 while ((temp = reader.readLine()) != null) {  
  55.                     System.err.println("server response:" + temp);// 打印收到的信息  
  56.                 }  
  57.                 reader.close();  
  58.                 in.close();  
  59.                 urlConn.disconnect();  
  60.             }  
  61.         }  
  62.     }  
  63. }  

 

转载于:https://my.oschina.net/xiaominmin/blog/1598003

你可能感兴趣的文章
C++ primer plus
查看>>
python mysqlDB
查看>>
UVALive 3942 Remember the Word Tire+DP
查看>>
Android之HttpClient
查看>>
从微软的DBML文件中我们能学到什么(它告诉了我们什么是微软的重中之重)~目录...
查看>>
被需求搞的一塌糊涂,怎么办?
查看>>
centos 7.2编译安装nginx-1.12.0
查看>>
c_数据结构_队的实现
查看>>
GCT之数学公式(平面解析几何)
查看>>
Java7 try-with-resources
查看>>
gdb调试的艺术——Debug技巧
查看>>
ceshi
查看>>
jquery 选择器总结
查看>>
1月10日,11日工作情况
查看>>
Qt设置背景图片
查看>>
Grunt使用心得
查看>>
【阿里云文档】常用文档整理
查看>>
iptables 配置需要保存
查看>>
.NET各种小问题
查看>>
ApkTool反编译和重新打包
查看>>