Implementing the nslookup command with Java

Source: Internet
Author: User
Tags domain name lookup nslookup nslookup command

Nslookup simulation can be easily achieved with Dnsjava tools, Dnsjava official website, Dnsjava-2.1.7.jar download

Package Cn.baokx;import Java.net.inetaddress;import Java.net.unknownhostexception;import org.xbill.DNS.Lookup; Import Org.xbill.dns.record;import Org.xbill.dns.textparseexception;import Org.xbill.dns.type;public class NetWork { public static void Main (string[] args) throws Unknownhostexception, textparseexception {inetaddress address = InetAddress . Getbyname ("baidu.com"); System.out.println (Address.gethostaddress ());//Query the IP address of the domain name lookup lookup = new Lookup ("Baidu.com", type.a); Lookup.run (); if (Lookup.getresult ()! = lookup.successful) {    System.out.println ("ERROR:" + lookup.geterrorstring ( ));    return;} record[] answers = Lookup.getanswers (); for (Record rec:answers) {    System.out.println (rec.tostring ());}}}


Implementing the nslookup command with Java

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.