发布网友 发布时间:2022-04-24 18:41
共4个回答
热心网友 时间:2022-05-19 13:27
import java.net.InetAddress;
import java.net.UnknownHostException;
public class Test
{
public static void main(String[] args) throws UnknownHostException
{
InetAddress inet = InetAddress.getLocalHost();
System.out.println("本机的ip=" + inet.getHostAddress());
}
}
热心网友 时间:2022-05-19 14:45
我还以为是在JAVA中呢,原来是JSP中
热心网友 时间:2022-05-19 16:20
request.getLocalAddr();
热心网友 时间:2022-05-19 18:11
使用java.net.InetAddress.getHostAddress()函数,返回的是字符串数据类型。