A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© XXXM 初级黑马   /  2017-12-22 21:45  /  1261 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

今天学了面向网络:  package com.itheima_01;

import java.net.InetAddress;
import java.net.UnknownHostException;

/*
* InetAddress:此类表示互联网协议 (IP) 地址。
*
*/
public class InetAddressDemo {
        public static void main(String[] args) throws UnknownHostException   {
                //static InetAddress getByName(String host)
                 //InetAddress address = InetAddress.getByName("itheima");
                InetAddress address = InetAddress.getByName("192.168.1.107");//ip地址是唯一的
       
                //System.out.println(address);//itheima/192.168.1.107 ipconfig
               
                String hostAddress = address.getHostAddress();//192.168.1.107 返回IP地址
                String hostName = address.getHostName();//itheima        返回主机名
               
                System.out.println(hostAddress);
                System.out.println(hostName);

4 个回复

倒序浏览
继续努力
回复 使用道具 举报
加油,加油,加油!
回复 使用道具 举报
回复 使用道具 举报
一定要坚持哟~~~加油
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马