博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Convert Url to InetAddress
阅读量:5977 次
发布时间:2019-06-20

本文共 732 字,大约阅读时间需要 2 分钟。

hot3.png

Simply call InetAddress.getByName(String host) passing in your textual IP address.

From the javadoc: The host name can either be a machine name, such as "java.sun.com", or a textual representation of its IP address.

// print the IP Address of your machine (inside your local network)		System.out.println(InetAddress.getLocalHost().getHostAddress());		// print the IP Address of a web site		System.out.println(InetAddress.getByName("www.javacodegeeks.com"));		// print all the IP Addresses that are assigned to a certain domain		InetAddress[] inetAddresses = InetAddress.getAllByName("www.google.com");		for (InetAddress ipAddress : inetAddresses) {			System.out.println(ipAddress);		}

转载于:https://my.oschina.net/u/138995/blog/305059

你可能感兴趣的文章
社区网站系统 jsGen
查看>>
(转)NandFlash详述
查看>>
Autodesk Infrastructure Map Server(AIMS)/MapGuide API 培训材料--第2章
查看>>
免费开发者兼容性测试工具Modern.IE
查看>>
线程什么时候需要同步,什么时候不需要同步?
查看>>
Struts2 自定义拦截器(方法拦截器)
查看>>
python三种字符串拼接效率对比
查看>>
scau Josephus Problem
查看>>
【转】Web前端研发工程师编程能力飞升之路
查看>>
C++ 多态实现机制
查看>>
[转]自定义ASP.NET MVC Html辅助方法
查看>>
类注解Spring注解自动注入Bean
查看>>
【Android】Notification官方文档归纳
查看>>
[C++摘抄]void*
查看>>
JAVA字符串转日期或日期转字符串
查看>>
置顶准时[置顶] 程序员也有风骚的青春
查看>>
开发DBA(APPLICATION DBA)的重要性
查看>>
poj1631
查看>>
vi的使用1
查看>>
phing用户手册第四章Getting Started译文
查看>>