如何通过发送和接收数据包手动获取网站的IP地址,从而抛出Google DNS,OpenDNS…
|
我想编写一个小程序,通过手动发送和接收来自Google DNS,Open DNS的数据包来获取某些网站的IP地址。
怎么可以帮我
我写了这个,但是不能正常工作。
public static void main(String args[]) throws Exception
{
String str=\"stackoverflow.com\";
DatagramPacket dp=new DatagramPacket(str.getBytes(),str.length());
DatagramSocket ds=new DatagramSocket();
dp.setAddress(InetAddress.getByName(\"8.8.8.8\"));
dp.setPort(53);
ds.send(dp);
System.out.println(\"SENDED\");
byte[] receive=new byte[1024];
dp.setData(receive);
System.out.println(\"PREPARING FOR RECEIVE : \");
ds.receive(dp);
System.out.println(new String(receive));
}
没有找到相关结果
已邀请:
3 个回复
田眯衅
镀建啼
奥李