如何使用Java RMI在三台服务器之间建立UDP连接

时间:2014-02-02 19:41:26

标签: java sockets udp rmi

我不清楚如何通过将它们绑定到注册表(接口)来在单个文件中创建的三个服务器之间建立UDP连接。

目前我正在制作这样的服务器

public void exportServer() throws Exception
{
    Remote obj = UnicastRemoteObject.exportObject(this, 2021);
    Registry r = LocateRegistry.createRegistry(2021);
    r.bind("NA", obj);
}

public static void main(String args[]) throws Exception
{
    (new GameServer()).exportServer();
    System.out.println("Server is up and running");

}

我需要一些指导,说明如何使用不同的端口号制作三台服务器并通过UDP连接进行连接。

1 个答案:

答案 0 :(得分:2)

你做不到。 RMI使用TCP而不是UDP,而“UDP连接”在术语上是矛盾的。

这个问题没有意义。