作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个程序来通过网络交换机控制多台电脑。我对多线程了解不够,无法理解内存是如何处理的,但是我如何调用 infSockeThread.start();
并连接到 ip1、ip2、ip3..?当我按原样发出代码时,它显然只是在我第二次调用它时覆盖 InfoSocket 类中的内存。基本上,我希望运行 InfoSocket 类的次数与 PC 的数量一样多,每个 PC 都有自己独特的连接。
例如,我在我的主类中调用它:
String[] compTestArray = {"172.16.98.6", "172.16.98.3"};
for(int i = 0; i < compTestArray.length; i++){
InfoSocket infSocket = new InfoSocket(compTestArray[i]);
Runnable infRunnable = infSocket;
Thread infSockeThread = new Thread(infRunnable);
infSockeThread.start();
}
然后我有我的套接字类:
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.Socket;
public class InfoSocket implements Runnable {
protected static Socket infoSocket;
protected static PrintWriter out;
protected static BufferedReader in;
protected static String ip;
public InfoSocket(String ipaddress){
ip = ipaddress;
}
@Override
public void run() {
System.out.println("InfoSocket Thread Started");
// TODO Auto-generated method stub
String hostName = ip, fromServer = null;
int portNumber = 6000;
boolean socketConnected = false;
while (!socketConnected) {
try {
Main.textArea.append("Attempting to connect to " + hostName
+ "\n");
Thread.sleep(5000);
infoSocket = new Socket(hostName, portNumber);
out = new PrintWriter(infoSocket.getOutputStream(), true);
in = new BufferedReader(new InputStreamReader(
infoSocket.getInputStream()));
System.out.println("Connected sent to server");
// BREAK POINT
fromServer = in.readLine();
while (!fromServer.equals("connect")) {
Thread.sleep(1000);
System.out.print("Waiting for connection response from machine");
}
sendResponse(fromServer);
// Break while loop because connection was successful
socketConnected = true;
} catch (Exception e) {
e.printStackTrace();
Main.textArea.append("Connection to " + hostName
+ " failed, trying again\n");
}
}
while (socketConnected) {
System.out.println("Thread to send response sleeping");
// Sleep for a second
try {
Thread.sleep(300);
// Get info from server if available
fromServer = in.readLine();
System.out.println("From Server: " + fromServer + "\n");
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
// Send response back to server based off
// of its input, only if the input is not equal to 'null'
try {
if (fromServer != null) {
System.out.println("Hit sendResponse");
sendResponse(fromServer);
}
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
public static String sendResponse(String action)
throws InterruptedException, IOException {
String str = " "; // Value to hold string to be returned
System.out.println("\nInside sendResponse");
System.out.println("Inside sendResponse & action is " + action + "\n");
switch (action) {
case "connect":
System.out.println("Inside connect");
out.println("success");
break;
case "ready":
System.out.println("Inside ready");
out.println("success");
break;
case "sync":
System.out.println("Inside sync");
Thread.sleep(10000);
out.println("success");
break;
default:
out.println(" ");
}
System.out.println("end of sendResponse");
return str;
}
}
最佳答案
InfoSocket
中的字段不应是静态
。这就是为什么它会在您第二次调用它时覆盖内存。如果它们不是静态
,则每个 InfoSocket
实例都将拥有这些变量的自己的副本。
顺便说一句,不需要写:
Runnable infRunnable = infSocket;
InfoSocket
已经可运行
。你可以简单地写:
Thread infSockeThread = new Thread(infSocket);
关于java - 如何在 Java 中的单独线程中运行客户端套接字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23436725/
我是一名优秀的程序员,十分优秀!