可以使用Java中的InetAddress类来获取服务器IP地址。以下是一个简单的Java代码示例:
import java.net.InetAddress;
public class GetServerIP {
public static void main(String[] args) {
try {
InetAddress address = InetAddress.getLocalHost();
System.out.println("Server IP Address: " + address.getHostAddress());
} catch (Exception e) {
System.out.println("Error: " + e.getMessage());
}
}
}
该程序使用getLocalHost()方法获取本地主机的IP地址,并将其打印到控制台上。如果需要获取远程服务器的IP地址,则可以使用InetAddress类的getByName()方法,传入服务器的主机名或IP地址作为参数。