getAddress
方法和
getHostAddress
类似,它们的唯一区别是
getHostAddress
方法返回的是字符串形式的
IP
地址,而
getAddress
方法返回的是
byte
数组形式的
IP
地址。
getAddress
方法的定义如下:
public
byte
[] getAddress()
这个方法返回的
byte
数组是有符号的。在
Java
中
byte
类型的取值范围是
-128
〜
127
。如果返回的
IP
地址的某个字节是大于
127
的整数,在
byte
数组中就是负数。由于
Java
中没有无符号
byte
类型,因此,要想显示正常的
IP
地址,必须使用
int
或
long
类型。下面代码
演示了如何利用
getAddress
返回
IP
地址,以及如何将
IP
地址转换成正整数形式。
package
mynet;
import java.net. * ;
public class MyIP
{
public static void main(String[] args) throws Exception
{
InetAddress address = InetAddress.getByName( " www.csdn.net " );
byte ip[] = address.getAddress();
for ( byte ipSegment : ip)
System.out.print(ipSegment + " " );
System.out.println( "" );
for ( byte ipSegment : ip)
{
int newIPSegment = (ipSegment < 0 ) ? 256 + ipSegment : ipSegment;
System.out.print(newIPSegment + " " );
}
}
}
import java.net. * ;
public class MyIP
{
public static void main(String[] args) throws Exception
{
InetAddress address = InetAddress.getByName( " www.csdn.net " );
byte ip[] = address.getAddress();
for ( byte ipSegment : ip)
System.out.print(ipSegment + " " );
System.out.println( "" );
for ( byte ipSegment : ip)
{
int newIPSegment = (ipSegment < 0 ) ? 256 + ipSegment : ipSegment;
System.out.print(newIPSegment + " " );
}
}
}
运行结果:
-
45
100
26
122
211 100 26 122
211 100 26 122
从上面的运行结果可以看出,第一行输出了未转换的
IP
地址,由于
www.csdn.net
的
IP
地址的第一个字节大于
127
,因此,输出了一个负数。而第二行由于将
IP
地址的每一个字节转换成了
int
类型,因此,输出了正常的
IP
地址。
本文转自 androidguy 51CTO博客,原文链接:http://blog.51cto.com/androidguy/214760,如需转载请自行联系原作者