怎样让这段 java 代码象上面的 C# 代码一样大量请求时都有反应



using System;
using System.IO;
using System.Net;

namespace exp
{
class Program
{
static void Main(string[] args)
{
HttpListener listener = new HttpListener();
listener.Prefixes.Add("http://localhost:8001/");
listener.Start();

while(true)
listener.BeginGetContext(processRequest, listener).AsyncWaitHandle.WaitOne();
}

private static void processRequest(IAsyncResult result)
{
HttpListener listener = (HttpListener) result.AsyncState;
HttpListenerContext ctx = listener.EndGetContext(result);

HttpListenerResponse response = ctx.Response;
StreamWriter sw = new StreamWriter(response.OutputStream);
sw.Write("hello");
sw.Close();
response.Close();
}
}
}





package httpserver;

import java.io.PrintWriter;
import java.net.ServerSocket;
import java.net.Socket;

import java.util.concurrent.TimeUnit;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.ArrayBlockingQueue;

public class Main
{

public static void main(String[] args) throws Exception
{
ArrayBlockingQueue queue = new ArrayBlockingQueue(50);
ThreadPoolExecutor threadPool = new ThreadPoolExecutor(10,100,5,TimeUnit.SECONDS,queue);
ServerSocket listener = new ServerSocket(8001);
while(true)
{
try
{
final Socket context = listener.accept();
threadPool.execute(new HttpHandle(context));
}
catch(Exception e)
{
System.out.print(e.getMessage());
}
}
}
}

class HttpHandle implements Runnable
{
private Socket context;

public HttpHandle(Socket context)
{
this.context = context;
}

public void run()
{
try
{

PrintWriter response = new PrintWriter(this.context.getOutputStream());
response.write("hello");
response.close();
context.close();

System.out.print("ok");
}
catch(Exception e)
{
System.out.print(e.getMessage());
}
}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值