導航:首頁 > IDC知識 > mysql根據域名獲取ip

mysql根據域名獲取ip

發布時間:2021-01-16 12:56:16

1、java怎麼通過域名獲取ip地址

import java.net.InetAddress;
import java.net.UnknownHostException;
public class TestInetAddress {
InetAddress myIpAddress = null;
InetAddress[] myServer = null;
public static void main(String args[]) {
TestInetAddress address = new TestInetAddress();
System.out.println("Your host IP is: " + address.getLocalhostIP());
String domain = www.jb51.net;
System.out.println("The server domain name is: " + domain);
InetAddress[] array = address.getServerIP(domain);
int count=0;
for(int i=1; i<array.length; i++){
System.out.println("ip "+ i +" "+ address.getServerIP(domain)[i-1]);
count++;
}
System.out.println("IP address total: "+count);
}
/**
* 獲得 localhost 的IP地址
* @return
*/
public InetAddress getLocalhostIP() {
try {
myIpAddress = InetAddress.getLocalHost();
} catch (UnknownHostException e) {
e.printStackTrace();
}
return (myIpAddress);
}
/**
* 獲得某域名的IP地址
* @param domain 域名
* @return
*/
public InetAddress[] getServerIP(String domain) {
try {
myServer = InetAddress.getAllByName(domain);
} catch (UnknownHostException e) {
e.printStackTrace();
}
return (myServer);
}
}

2、java通過域名獲取IP地址

public String getIP(String name){
InetAddress address = null;
try {
address = InetAddress.getByName(name);
} catch (UnknownHostException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println("獲取失敗");
}
return address.getHostAddress().toString();
}

3、如何通過域名得到IP

最簡單的是通過:運行 > cmd > ping 域名 > 回車執行就可以得到該域名現在解析到什麼IP了;
第二種可以上http://www.ip138.com 這里查詢

4、如何獲取域名對應的IP地址

可以通過ping 域名 的方式獲取域名對應的IP地址,但這個只是本次ping採用的dns解析結果的IP
還可以使用nslookup命令查詢某個DNS伺服器上獲取的IP地址信息,如果域名設置了智能解析,可能不同地區的DNS伺服器返回的IP地址結果不同

5、如何通過域名解析得到ip地址

一般設置A記錄指向到主機IP,解析10分鍾後生效。這兒有設置演示,可以教你操作。

6、如何通過域名獲取ip 透過代理

站長工具查詢即可
http://tool.chinaz.com

7、什麼是根據域名查詢其對應的ip地址或其他相關信息?

通過Ping 域名可以看到IP地址

與mysql根據域名獲取ip相關的知識