多线程 Java TCP 客户端
Multi-threaded Java TCP Client
我正在编写一个 Java 客户端应用程序(带有 TCP/IP 的基本 Java 网络包)。客户端必须从 system.in 获取输入,同时必须通过套接字输入流监听来自服务器的任何消息。
一旦收到来自 system.in 的输入,客户端将获取该输入,进行一些处理并将其作为请求发送到服务器。
所以基本上有 2 个进程 运行、
-监听客户端请求
-监听服务器响应。
我为此实现了 2 个线程,运行 在主线程中处理消息。
这样的设计够好吗?
有没有办法return从system.in接收到的消息到主线程。线程 运行() 方法 return 无效。我使用了一个 volatile 变量来 return 收到的字符串,但它说 volatile 非常昂贵,因为它不使用 cpu 缓存来存储变量。
您可以查看我为 java 套接字和多线程示例编写的这两个项目。
我想 ClientExample 是您正在寻找的那个,但您也可以看一下服务器部分。
基本上,我们的想法是启动两个单独的线程来侦听不同的输入 - 套接字和控制台。
final Thread outThread = new Thread() {
@Override
public void run() {
System.out.println("Started...");
PrintWriter out = null;
Scanner sysIn = new Scanner(System.in);
try {
out = new PrintWriter(socket.getOutputStream());
out.println(name);
out.flush();
while (sysIn.hasNext() && !isFinished.get()) {
String line = sysIn.nextLine();
if ("exit".equals(line)) {
synchronized (isFinished) {
isFinished.set(true);
}
}
out.println(line);
out.flush();
disconnect();
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
if (out != null) {
out.close();
}
}
};
};
outThread.start();
和另一个用于套接字输入的线程:
final Thread inThread = new Thread() {
@Override
public void run() {
// Use a Scanner to read from the remote server
Scanner in = null;
try {
in = new Scanner(socket.getInputStream());
String line = in.nextLine();
while (!isFinished.get()) {
System.out.println(line);
line = in.nextLine();
}
} catch (Exception e) {
// e.printStackTrace();
} finally {
if (in != null) {
in.close();
}
}
};
};
inThread.start();
希望对您有所帮助:)
我正在编写一个 Java 客户端应用程序(带有 TCP/IP 的基本 Java 网络包)。客户端必须从 system.in 获取输入,同时必须通过套接字输入流监听来自服务器的任何消息。 一旦收到来自 system.in 的输入,客户端将获取该输入,进行一些处理并将其作为请求发送到服务器。 所以基本上有 2 个进程 运行、
-监听客户端请求
-监听服务器响应。
我为此实现了 2 个线程,运行 在主线程中处理消息。 这样的设计够好吗?
有没有办法return从system.in接收到的消息到主线程。线程 运行() 方法 return 无效。我使用了一个 volatile 变量来 return 收到的字符串,但它说 volatile 非常昂贵,因为它不使用 cpu 缓存来存储变量。
您可以查看我为 java 套接字和多线程示例编写的这两个项目。
我想 ClientExample 是您正在寻找的那个,但您也可以看一下服务器部分。
基本上,我们的想法是启动两个单独的线程来侦听不同的输入 - 套接字和控制台。
final Thread outThread = new Thread() {
@Override
public void run() {
System.out.println("Started...");
PrintWriter out = null;
Scanner sysIn = new Scanner(System.in);
try {
out = new PrintWriter(socket.getOutputStream());
out.println(name);
out.flush();
while (sysIn.hasNext() && !isFinished.get()) {
String line = sysIn.nextLine();
if ("exit".equals(line)) {
synchronized (isFinished) {
isFinished.set(true);
}
}
out.println(line);
out.flush();
disconnect();
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
if (out != null) {
out.close();
}
}
};
};
outThread.start();
和另一个用于套接字输入的线程:
final Thread inThread = new Thread() {
@Override
public void run() {
// Use a Scanner to read from the remote server
Scanner in = null;
try {
in = new Scanner(socket.getInputStream());
String line = in.nextLine();
while (!isFinished.get()) {
System.out.println(line);
line = in.nextLine();
}
} catch (Exception e) {
// e.printStackTrace();
} finally {
if (in != null) {
in.close();
}
}
};
};
inThread.start();
希望对您有所帮助:)