`
wufan0023
  • 浏览: 29139 次
  • 性别: Icon_minigender_1
  • 来自: hefei
社区版块
存档分类
最新评论

阻塞式线程池客户端

阅读更多
import java.net.*;
import java.nio.channels.*;
import java.nio.*;
import java.io.*;
import java.nio.charset.*;

public class EchoClient {
	private SocketChannel socketChannel = null;

	public EchoClient() throws IOException {
		socketChannel = SocketChannel.open(); // 打开通道
		// 设置连接地址和端口
		InetAddress ia = InetAddress.getLocalHost();
		InetSocketAddress isa = new InetSocketAddress(ia, 8001);
		try {
			socketChannel.connect(isa);// 连接远端
			System.out.println("与服务器的连接建立成功");
		} catch (ConnectException ce) {
			System.out.println("服务器无应答!");
		}
	}

	public void talk() throws IOException {
		try {
			BufferedReader br = getReader(socketChannel.socket());
			PrintWriter pw = getWriter(socketChannel.socket());
			BufferedReader localReader = new BufferedReader(
					new InputStreamReader(System.in));
			String msg = null;
			while ((msg = localReader.readLine()) != null) {
				pw.println(msg);
				System.out.println(br.readLine());

				if (msg.equals("bye"))
					break;
			}
		} catch (IOException e) {

		} finally {
			try {
				socketChannel.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
	}

	private PrintWriter getWriter(Socket socket) throws IOException {
		OutputStream socketOut = socket.getOutputStream();
		return new PrintWriter(socketOut, true);
	}

	private BufferedReader getReader(Socket socket) throws IOException {
		InputStream socketIn = socket.getInputStream();
		return new BufferedReader(new InputStreamReader(socketIn));
	}
	
	public static void main(String args[]) throws IOException {
		new EchoClient().talk();
	}
}

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics