• Java编程实现获取本机IP和计算机名的功能


    版权声明:本文为博主原创文章。未经博主同意不得转载。

    https://blog.csdn.net/wangshuxuncom/article/details/35990847

    import java.net.InetAddress;
    import java.net.UnknownHostException;
    
    public class Test {
    
    	public static void main(String[] args) {
    		try {
    			InetAddress inetAddress = InetAddress.getLocalHost();
    			System.out.println("本机IP:"	+ inetAddress.getHostAddress().toString());
    			System.out.println("本机名称:" + inetAddress.getHostName().toString());
    		} catch (UnknownHostException e) {
    			e.printStackTrace();
    		}
    	}
    }
  • 相关阅读:
    Git删除本地和远程文件
    MongoDB的安装和环境配置
    Cookie和Session的区别
    如何往npm上上传自定义的模块?
    JS的一些兼容性问题
    【网络流24题】 5. 圆桌问题 题解
    【网络流24题】 6. 最长不下降子序列问题 题解
    【网络流24题】 4. 魔术球问题 题解
    【网络流24题】 3. 最小路径覆盖问题 题解
    【网络流24题】 2. 太空飞行计划问题 题解
  • 原文地址:https://www.cnblogs.com/ldxsuanfa/p/10745166.html
  • Copyright © 2020-2023  润新知