Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能解释我如何获得 Java RMI 编程的客户端 IP,包括如何使用它的示例?
我查过Java API,但很难理解。
我想在服务器上打印客户端 IP
类中唯一RemoteServer需要调用的方法是getClientHost(). 这就是你在标题中所问的那个。
RemoteServer
getClientHost()
我找到了解决方案以及你们的意思,谢谢:
我们需要一个 try-catch 来处理 server 的接口实现中的 getClientHost() 函数。
这是代码:
try{ System.out.println(getClientHost()); // display message }catch(Exception e){}