<dfn id="w48us"></dfn><ul id="w48us"></ul>
  • <ul id="w48us"></ul>
  • <del id="w48us"></del>
    <ul id="w48us"></ul>
  • Java如何實現簡單的whois查詢

    時間:2024-09-21 19:07:49 SUN認證 我要投稿
    • 相關推薦

    Java如何實現簡單的whois查詢

      利用Java socket 實現根據IP地址查詢該IP相關的注冊信息。

      源代碼直接下載:java_whois.zip

      相關的兩個類WhoisBean.java 和WhoisQuery.java 代碼實現如下:

      Java代碼

      import java.util.LinkedHashMap;

      import java.util.List;

      import java.util.Map;

      import java.util.Map.Entry;

      /**

      *

      * @author Michael sun

      */

      public class WhoisQuery {

      /**

      *

      * @param ip

      */

      private void queryIpInfo(String ip) {

      Map map = new LinkedHashMap();

      try {

      WhoisBean bean = new WhoisBean();

      bean.setTimeout(0);

      // bean.setServer("whois.apnic.net");

      bean.setServer("whois.ripe.net");

      bean.queryInfoByIp(ip);

      List infoList = bean.getInfoList();

      String value = "";

      String key = "";

      for (String infoTmp : infoList) {

      String[] arr = infoTmp.split(":[ ]*");

      if (arr.length > 1) {

      key = arr[0];

      value = arr[1];

      } else {

      value = arr[0].trim();

      }

      if (null == map.get(key)) {

      map.put(key, "");

      }

      value = map.get(key) + value;

      map.put(key, value);

      }

      } catch (Exception e) {

      e.printStackTrace();

      }

      for (Entry entry : map.entrySet()) {

      System.out.println(entry.getKey() + ":" + entry.getValue());

      }

      }

      /**

      * @param args

      */

      public static void main(String[] args) {

      String ip = "129.42.58.216";// "163.1.13.189";

      WhoisQuery query = new WhoisQuery();

      query.queryIpInfo(ip);

      }

      }

      Java代碼

      import java.io.BufferedReader;

      import java.io.InputStreamReader;

      import java.io.PrintStream;

      import java.net.Socket;

      import java.util.ArrayList;

      import java.util.List;

      /**

      * WhoisBean

      * @author Michael sun

      */

      public class WhoisBean {

      /**

      * server address

      */

      private String server = "";

      /**

      * port

      */

      private int port = 43;

      /**

      * timeout/minute

      */

      private int timeout = 0;

      /**

      * infoList

      */

      private List infoList = new ArrayList();

      /**

      * @param ip

      * @throws Exception

      */

      @SuppressWarnings("unchecked")

      public void queryInfoByIp(String ip) throws Exception {

      Socket theSocket = null;

      BufferedReader br = null;

      PrintStream ps = null;

      int qryCount = 0;

      while (qryCount < 5) {

      qryCount++;

      try {

      theSocket = new Socket(server, port);

      theSocket.setSoTimeout(timeout * 1000);

      ps = new PrintStream(theSocket.getOutputStream());

      ps.println(ip);

      br = new BufferedReader(new InputStreamReader(theSocket

      .getInputStream()));

      infoList.add("ip:" + ip);

      String readLine = "";

      int i = 0;

      System.out.println("Whois query read start.... ");

      while ((readLine = br.readLine()) != null) {

      System.out.println("***" + readLine);

      if (readLine.length() > 0 && readLine.charAt(0) != '%') {

      infoList.add(readLine);

      i++;

      // 默認讀取100行數據

      if (i > 100 || readLine.startsWith("source")) {

      break;

      }

      }

      }

      System.out.println("querylist size:" + infoList.size());

      break;

      } catch (Exception e) {

      System.out.println("EXCEPTION : " + e);

      } finally {

      if (null != br) {

      br.close();

      }

      if (null != ps) {

      ps.close();

      }

      if (null != theSocket) {

      theSocket.close();

      }

      }

      }

      }

      /**

      * @return the server

      */

      public String getServer() {

      return server;

      }

      /**

      * @return the port

      */

      public int getPort() {

      return port;

      }

      /**

      * @return the timeout

      */

      public int getTimeout() {

      return timeout;

      }

      /**

      * @param pServer the server to set

      */

      public void setServer(String pServer) {

      server = pServer;

      }

      /**

      * @param pPort the port to set

      */

      public void setPort(int pPort) {

      port = pPort;

      }

      /**

      * @param pTimeout the timeout to set

      */

      public void setTimeout(int pTimeout) {

      timeout = pTimeout;

      }

      /**

      * @return the infoList

      */

      public List getInfoList() {

      return infoList;

      }

      /**

      * @param pInfoList the infoList to set

      */

      public void setInfoList(List pInfoList) {

      infoList = pInfoList;

      }

      }

      運行WhoisQuery這個類就可以看到如下信息:

      Java代碼

      Whois query read start....

      ***% This is the RIPE Database query service.

      ***% The objects are in RPSL format.

      ***%

      ***% The RIPE Database is subject to Terms and Conditions.

      ***% See http://www.ripe.net/db/support/db-terms-conditions.pdf

      ***

      ***% Note: This output has been filtered.

      ***% To receive output for a database update, use the "-B" flag.

      ***

      ***% Information related to '129.0.0.0 - 129.255.255.255'

      ***

      ***inetnum: 129.0.0.0 - 129.255.255.255

      ***netname: EU-ZZ-129

      ***descr: Various Registries

      ***country: EU # Country is really world wide

      ***remarks: These addresses were issued by

      *** The IANA before the formation of

      *** Regional Internet Registries.

      ***

      ***org: ORG-NCC1-RIPE

      ***admin-c: iana1-RIPE

      ***tech-c: iana1-RIPE

      ***status: ALLOCATED UNSPECIFIED

      ***mnt-by: RIPE-NCC-HM-MNT

      ***mnt-lower: RIPE-NCC-HM-MNT

      ***mnt-routes: RIPE-NCC-RPSL-MNT

      ***source: RIPE # Filtered

      querylist size:17

      ip:129.42.58.216

      inetnum:129.0.0.0 - 129.255.255.255

      netname:EU-ZZ-129

      descr:Various Registries

      country:EU # Country is really world wide

      remarks:These addresses were issued byThe IANA before the formation ofRegional Internet Registries.

      org:ORG-NCC1-RIPE

      admin-c:iana1-RIPE

      tech-c:iana1-RIPE

      status:ALLOCATED UNSPECIFIED

      mnt-by:RIPE-NCC-HM-MNT

      mnt-lower:RIPE-NCC-HM-MNT

      mnt-routes:RIPE-NCC-RPSL-MNT

      source:RIPE # Filtered

    【Java如何實現簡單的whois查詢】相關文章:

    Java byte[]轉int如何實現03-16

    實現鼠標畫圖的Java程序03-16

    Java多線程的實現方式03-20

    Java語言的特點和實現機制02-27

    Java動態代理實現AOP的方法03-16

    如何編譯java程序03-05

    java實現web服務器的方法03-30

    Java認證輔導:Java實現二叉樹遍歷算法03-19

    如何讓JAVA代碼更高效03-20

    主站蜘蛛池模板: 久久久无码精品亚洲日韩按摩| 99精品免费视品| 国产女人精品视频国产灰线| 国产精品亚洲一区二区在线观看| 精品乱码久久久久久久| 麻豆国产精品VA在线观看不卡| 国产精品91视频| 最新欧美性爱精品一区二区三区 | 无码精品久久久久久人妻中字| 国产亚洲美女精品久久久| 国产精品久久久久久福利69堂| 亚洲永久精品ww47| 久久精品国产亚洲Aⅴ香蕉 | 99精品国产在热久久| 熟妇人妻VA精品中文字幕| 久久青青草原精品国产不卡| 最新国产精品亚洲| 91麻豆精品国产自产在线观看一区| 亚洲精品制服丝袜四区| 久久精品无码一区二区日韩AV| 国产精品久久久99| 久久99精品综合国产首页| 国产乱码精品一品二品| 中文字幕无码久久精品青草| 日韩三级精品| 欧美精品播放| 四虎国产精品永免费| 久久夜色精品国产www| 精品国产呦系列在线观看免费| 国产精品免费久久久久影院| 四虎精品成人免费永久| 午夜精品福利视频| 久久精品九九亚洲精品天堂| 欧美大片日韩精品| 久久久久四虎国产精品| 九九热在线视频观看这里只有精品| 51午夜精品免费视频| 国产2021精品视频免费播放| 国产成人精品久久免费动漫| 99精品视频在线| 精品国产品香蕉在线观看75|