我想通过手动发送和接收来自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));
}
答案 0 :(得分:2)
如果您不想实施DNS协议,dnsjava可能会让您感兴趣。
答案 1 :(得分:1)
您需要实施DNS协议 - 起点可以是http://tools.ietf.org/html/rfc1035
答案 2 :(得分:0)
DNS协议在RFC 1034中定义。