gpt4 book ai didi

java - 作为服务器和客户端运行应用程序

转载 作者:搜寻专家 更新时间:2023-11-01 03:57:23 24 4
gpt4 key购买 nike

我想让我的电脑既是服务器又是客户端。这是我的代码

import java.net.*;
class tester {
static int pos=0;
static byte buffer[]=new byte[100];
static void Client() throws Exception {
InetAddress address=InetAddress.getLocalHost();
DatagramSocket ds=new DatagramSocket(3000,address);
while(true) {
int c=System.in.read();
buffer[pos++]=(byte)c;
if((char)c=='\n')
break;
}
ds.send(new DatagramPacket(buffer,pos,address,3000));
Server();
}

static void Server() throws Exception {
InetAddress address=InetAddress.getLocalHost();
DatagramSocket ds=new DatagramSocket(3001,address);
DatagramPacket dp=new DatagramPacket(buffer,buffer.length);
ds.receive(dp);
System.out.print(new String(dp.getData(),0,dp.getLength()));
}
public static void main(String args[])throws Exception {

if(args.length==1) {
Client();
}
}

在这方面我尝试让我的电脑既是服务器又是客户端。我在 cmd 上运行这个程序java tester hello 但程序一直在等待。我应该怎么做才能收到输入的消息?

*如果代码有任何修改,请提出。注意,目的是让我的电脑既是服务器又是客户端。

最佳答案

目前,您的应用程序将作为服务器客户端运行,这取决于您是否提供命令行参数。要在同一进程中同时运行,您需要启动两个线程(至少)- 一个用于服务器,一个用于客户端。

但目前,我只是在两个不同的命令窗口中启动它两次 - 一次使用命令行参数(使其成为客户端),一次没有(使其成为服务器)。

编辑:我刚刚注意到您的主要方法永远不会运行 Server()。所以你需要把它改成这样:

if (args.length == 1) {
Client();
} else {
Server();
}

(您可能还想同时开始遵循 Java 命名约定,顺便将方法重命名为 client()server()。)

然后去掉Client()末尾的Server()调用,在Client中调用无参数的DatagramSocket构造函数() 避免试图成为服务器...

完成的代码可能看起来像这样:

import java.io.IOException;
import java.net.*;

public class ClientServer {

private static void runClient() throws IOException {
InetAddress address = InetAddress.getLocalHost();
DatagramSocket ds=new DatagramSocket();
int pos = 0;
byte[] buffer = new byte[100];
while (pos < buffer.length) {
int c = System.in.read();
buffer[pos++]=(byte)c;
if ((char)c == '\n') {
break;
}
}
System.out.println("Sending " + pos + " bytes");
ds.send(new DatagramPacket(buffer, pos, address, 3000));
}

private static void runServer() throws IOException {
byte[] buffer = new byte[100];
InetAddress address = InetAddress.getLocalHost();
DatagramSocket ds = new DatagramSocket(3000, address);
DatagramPacket dp = new DatagramPacket(buffer, buffer.length);
ds.receive(dp);
System.out.print(new String(dp.getData(), 0, dp.getLength()));
}

public static void main(String args[]) throws IOException {
if (args.length == 1) {
runClient();
} else {
runServer();
}
}
}

请注意,这仍然不是出色的 代码,尤其是使用系统默认字符串编码...但它可以工作。通过运行 java ClientServer 在一个窗口中启动服务器,然后在另一个窗口中运行 java ClientServer xxx,键入一条消息并按回车键。您应该在服务器窗口中看到它。

关于java - 作为服务器和客户端运行应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5433378/

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