大家好我已经创建了一个简单的聊天室应用程序,但我无法连接到服务器来发送和接收数据,这是我的代码的一部分:
服务器端:
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.regex.Pattern;
public class Listener {
public static void start() {
try {
final ServerSocketChannel serverSocketChannel = ServerSocketChannel.open();
serverSocketChannel.configureBlocking(true);
serverSocketChannel.socket().bind(new InetSocketAddress(GetConfigs.getServerListenerPort()));
final List<Operator> operators = new ArrayList<>();
final int nOperators = 64;
for (int i = 0; i < nOperators; i++) {
operators.add(i, new Operator());
}
final int parallelism = Runtime.getRuntime().availableProcessors();
ForkJoinPool pool = new ForkJoinPool(parallelism);
pool.submit(() -> new Thread(() -> {
int i = 0;
while (true) {
try {
operators.get(i).newOperation(serverSocketChannel.accept());
i++;
if (i == nOperators) {
i = 0;
}
} catch (IOException ignored) {
}
}
})).fork().invoke().start();
} catch (IOException e) {
Logging.log.error(e);
}
}
客户方:
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.net.InetAddress;
import java.net.Socket;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.regex.Pattern;
public class ConnectServer {
private static final String SERVER_ADDRESS = GetConfigs.getServerIPAddress();
private static final int SERVER_LISTENER_PORT = GetConfigs.getServerListenerPort();
private StringBuilder result = new StringBuilder();
private void connect() {
result.delete(0, result.length());
try {
SocketChannel socketChannel = SocketChannel.open();
socketChannel.configureBlocking(true);
if (socketChannel.connect(new InetSocketAddress(InetAddress.getByName(SERVER_ADDRESS), SERVER_LISTENER_PORT))) {
DataOutputStream dos = new DataOutputStream(socketChannel.socket().getOutputStream());
DataInputStream dis = new DataInputStream(socketChannel.socket().getInputStream());
dos.writeUTF("...");
result.append(String.valueOf(dis.readUTF()));
dos.close();
dis.close();
socketChannel.close();
}
} catch (IOException ex) {
//...
}
}
}
它适用于LAN连接。
请帮帮我......
答案 0 :(得分:2)
这是一个简单的测试。 Ssh到局域网外的计算机,这是一台无法连接的计算机。尝试两件事:
ping <ip address you connect to>
和
telnet <ip address you connect to> <port you connect to>
如果ping失败,您可能正在使用&#34;内部&#34; IP地址,如192.168.x.y(或其他类似的)。尝试使用服务器计算机上的http://www.whatismyip.com/。
如果ping成功并且telnet失败,则可能存在防火墙问题:请在路由器上设置端口转发,在防火墙中插入一个洞并执行其他所需操作。具体需要取决于您的确切设置。
答案 1 :(得分:0)
我的猜测: 我今天遇到了同样的问题,我的客户端服务器在我的wifi上工作,但不在外面的客户端。我在我的路由器上转发了端口,但问题是它没有转发到我运行服务器程序的计算机上。我改变后它起作用了。