黑马程序员技术交流社区

标题: 就业班的第12学习经历 [打印本页]

作者: XXXM    时间: 2017-12-22 21:45
标题: 就业班的第12学习经历
今天学了面向网络:  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);
作者: 1414225997    时间: 2017-12-23 10:00
继续努力
作者: 花开的季节    时间: 2017-12-23 10:45
加油,加油,加油!
作者: 陈文老师    时间: 2017-12-23 11:43

作者: 渝小妹    时间: 2017-12-23 16:34
一定要坚持哟~~~加油




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2