java能读写本地hosts文件么

java能读写本地hosts文件么,第1张

java能读写本地hosts文件, java web开发之本地hosts文件配置 在进行web开发的时候,通常需要以>

使用Java标准类库javaNETURL

javaNetURL url = new javanetURL("");

String host = urlgetHost();// 获取主机名

Systemoutprintln("host:"+host);// 结果 blogcsdnnet

用类javanetInetAddress中

byte[] getAddress() 返回此 InetAddress 对象的原始 IP 地址

static InetAddress[] getAllByName(String host) 在给定主机名的情况下,根据系统上配置的名称服务返回其 IP 地址所组成的数组。

static InetAddress getByAddress(byte[] addr) 在给定原始 IP 地址的情况下,返回 InetAddress 对象。

static InetAddress getByAddress(String host, byte[] addr) 根据提供的主机名和 IP 地址创建 InetAddress。

static InetAddress getByName(String host) 在给定主机名的情况下确定主机的 IP 地址。

String getCanonicalHostName() 获取此 IP 地址的完全限定域名。

String getHostAddress() 返回 IP 地址字符串(以文本表现形式)。

String getHostName() 获取此 IP 地址的主机名。

static InetAddress getLocalHost() 返回本地主机。

Enumeration netInterfaces = null;

try {

netInterfaces = NetworkInterfacegetNetworkInterfaces();

while (netInterfaceshasMoreElements()) {

NetworkInterface ni = netInterfacesnextElement();

Systemoutprintln("DisplayName:" + nigetDisplayName());

Systemoutprintln("Name:" + nigetName());

Enumeration ips = nigetInetAddresses();

while (ipshasMoreElements()) {

Systemoutprintln("IP:"

+ ipsnextElement()getHostAddress());

}

}

} catch (Exception e) {

eprintStackTrace();

}

以上就是关于java能读写本地hosts文件么全部的内容,包括:java能读写本地hosts文件么、java如何获取根域名、如何用java获取七牛"空间域名等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9482827.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-28
下一篇 2023-04-28

发表评论

登录后才能评论

评论列表(0条)

保存