gpt4 book ai didi

java - 如何在 JAVA 中更改服务器套接字连接的回复端口

转载 作者:可可西里 更新时间:2023-11-01 02:54:55 24 4
gpt4 key购买 nike


我正在尝试为充当 TCP/IP 服务器的硬连线设备编写模拟器。
我有一个连接到该服务器并进行通信的 VB6 程序,但是它会间歇性地失败,我需要确定出了什么问题,所以我正在编写一个程序来模拟服务器。
我构建了以下 Java 程序来监听来自 VB 程序的连接,并使用与服务器设备相同的信息进行响应。

public class ServerSim {

public static void main(String[] args){
int port = 23;
System.out.println("[Listening for Connection]");
try{
ServerSocket ss;
ss = new ServerSocket(port);
Socket s;

// The program will wait here until a connection is made.
s = ss.accept();

// Print what client we're connected to.
String client;
client = s.getInetAddress().toString();
String localPort = Integer.toString(s.getLocalPort());
String portNo = Integer.toString(s.getPort());

System.out.println("[Connected to "+client +"] Port:" + portNo + " localPort: " + localPort);

//Set up Scanner / Writer to read / write data to client.
Scanner in;
//Scanner sc = new Scanner(System.in);

in = new Scanner(s.getInputStream());
PrintWriter out;
out = new PrintWriter(s.getOutputStream(),true);

PrintWriter log = openWriter("Log.txt");

// Establish a 5second connection
s.setSoTimeout(5000);

try{
boolean result = establishConnection(in, out);
String input = in.nextLine();
System.out.println("Recieved: " + input);
String response = input;
out.println(response);
System.out.println("Responded: " + response);
log.println(input + "->" + response);
}
catch(Exception e){
System.err.println("EXC: "+e.getMessage());
e.printStackTrace();
}
System.out.println("[Closing Connections]");
in.close();
out.close();
log.close();
s.close();
ss.close();

}catch(Exception e){
e.printStackTrace();
}
}
private static boolean establishConnection(Scanner in, PrintWriter out){
// we have a connnection - Start by outputtinga welcome message.
out.print("Welcome Session 0\r\n");
out.flush();
out.print("User:\r\n");
out.flush();
System.out.println("[Welcome sent - Waiting Response]");
String input = in.nextLine(); // Recieve the first line. Should be a User
System.out.println("[Recieved '"+input+"' - Sending anticipated reply]");
out.println("Password:");
input = in.nextLine(); // Recieve the first line. Should be a User
System.out.println("[Recieved '"+input+"' - Sending anticipated reply]");
out.println("User Logged in");
return true;
}
private static PrintWriter openWriter(String name){
try{
File file = new File(name);
PrintWriter out = new PrintWriter(
new BufferedWriter(
new FileWriter(file, true)),true);
return out;
}
catch(IOException e){
System.out.println("I/O Error");
System.exit(0);
}
return null;
}

}

问题是 VB1 程序不接受来 self 的程序的输入。

我将成功设备的网络数据包捕获与我自己程序的流量捕获进行了比较,所有相关内容都是相同的...除了回复端口。
在我的程序中,serversocket随机分配了一个端口来响应VB6程序,但是当VB6程序连接到我试图模拟的物理设备时,设备只在端口1602上回复。

我的问题是,当我正在监听端口 23 的连接时(这一切都很好),我如何获得创建的套接字以在端口 1602 上回复而不是随机跳转 2000 - 3000 标记?

我能看到的所有回复和问题都是围绕套接字或多线程而不锁定等待连接的端口。
如果这不是一个目标,那么有人可以为我指出一个更好的解决方案来实现 UI 想要实现的目标吗?
我知道有人会说为什么不使用实际设备设置装备,但它们很昂贵,而且我没有现成的备用设备来设置装备。那个,现在这个问题已经向我提出,我不禁要弄清楚发生了什么! :-)

1编辑: 我无法询问 VB 程序,因为它使用一系列 ActiveX 与设备通信并处理协议(protocol)。这可能是我试图找到的问题的来源,所以我不想写出来。

最佳答案

如果您想在端口 1602 上回复 vb-app(并且 vb-app 尚未在其端使用端口 1602),您将需要另一个(新)套接字。

ServerSocket.accept();

返回一个 java.net.Socket。此连接由 4 个属性标识:client-port、client-ip、server-port、server-ip。

随机分配(您所说的)回复端口的不是服务器(您的程序),而是客户端(vb-app)。如果客户端不这样做,服务器就不知道应该将响应数据包发送到哪里。

您可能想要创建一个 java.net.Socket,其中包含 vb 应用程序的 ip 和端口 1602。很可能 vb-app 充当客户端 服务器。

关于java - 如何在 JAVA 中更改服务器套接字连接的回复端口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11140626/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com