Board logo

标题: java域名解析代码 [打印本页]

作者: Nothing    时间: 2007-11-30 09:20     标题: java域名解析代码

import java.net.*;

public class NetTool {
    InetAddress myIPaddress = null;

    InetAddress myServer = null;

    public static void main(String args[]) {
        NetTool mytool;
        mytool = new NetTool();
        System.out.println("Your host IP is: " + mytool.getMyIP());
        System.out.println("The Server IP is :" + mytool.getServerIP());

    }

    // 取得LOCALHOST的IP地址

    public InetAddress getMyIP() {
        try {
            myIPaddress = InetAddress.getLocalHost();
        } catch (UnknownHostException e) {
        }
        return (myIPaddress);
    }

    // 取得 www.abc.com 的IP地址

    public InetAddress getServerIP() {
        try {
            myServer = InetAddress.getByName("www.abc.com");
        } catch (UnknownHostException e) {
        }
        return (myServer);
    }

}

作者: clover    时间: 2008-2-28 17:17

呵呵
不错啊````````




欢迎光临 编程开发论坛 (http://bbs.lihuasoft.net/) Powered by Discuz! 6.0.0