怎么编写一个Java程序来获取ip地址
发布网友
发布时间:2022-04-24 16:58
我来回答
共4个回答
热心网友
时间:2023-10-24 06:32
import java.util.*;
import java.net.*;public class getMyIP
{
public static void main(String[] args)
{
String IP = null;
String host = null;
try
{
InetAddress ia = InetAddress.getLocalHost();
host = ia.getHostName();//获取计算机名字
IP= ia.getHostAddress();//获取IP
}
catch(UnknownHostException e)
{
e.printStackTrace();
}
System.out.println(host);
System.out.println(IP);
}
}
热心网友
时间:2023-10-24 06:32
参考一下这个接口下javax.servlet
Interface ServletRequest 的方法 StringgetRemoteAddr()
Returns the Internet Protocol (IP) address of the client or last proxy that sent the request.
热心网友
时间:2023-10-24 06:32
上面那为老兄 类名首字母应该大写 还有根本就没有用到java.util包里的东西 干什么还引用过来 不是浪费吗?
热心网友
时间:2023-10-24 06:33
这个兄弟讲太取IP太专业了.学习,不知有人测试过没?能不能把结果发回来.