java TCP端口监听

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.Socket;

/**
 * 
 * 服务器端程序:
 * 
 * 1. 监听一端口,等待客户接入; 2. 一旦有客户接入,就构造一个Socket会话对象; 3. 将这个会话交给线程处理,然后主程序继续监听。
 * 
 * @author OKJohn
 * @version 1.0
 */

public class Server extends ServerSocket {

	public Server(int serverPort) throws IOException {
		// 用指定的端口构造一个ServerSocket
		super(serverPort);
		try {
			while (true) {
				// 监听一端口,等待客户接入
				Socket socket = accept();
				// 将会话交给线程处理
				new ServerThread(socket);
			}
		} catch (IOException e) {
			e.printStackTrace();
		} finally {
			close(); // 关闭监听端口
		}
	}

	// inner-class ServerThread
	class ServerThread extends Thread {
		private Socket socket;
		private BufferedReader in;
		private PrintWriter out;

		// Ready to conversation
		public ServerThread(Socket s) throws IOException {
			this.socket = s;
			// 构造该会话中的输入输出流
			in = new BufferedReader(new InputStreamReader(socket
					.getInputStream(), "GB2312"));
			out = new PrintWriter(socket.getOutputStream(), true);
			start();
		}

		// Execute conversation
		public void run() {
			try {

				// Communicate with client until "bye " received.
				while (true) {
					// 通过输入流接收客户端信息
					String line = in.readLine();
					if (line == null || "".equals(line.trim())) { // 是否终止会话
						break;
					}
					System.out.println("Received   message: " + line);
					// 通过输出流向客户端发送信息
					out.println(line);
					out.flush();
				}

				out.close();
				in.close();
				socket.close();

			} catch (IOException e) {
				e.printStackTrace();
			}
		}

	}

	// main method
	public static void main(String[] args) throws IOException {
		new Server(2088);
	}
}

 

在浏览器输入:http://localhost:2088/hello.do

浏览器显示:

GET /hello.do HTTP/1.1
Host: localhost:2088
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: zh-cn,zh;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: GB2312,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive

 

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值