weblog.java

来自「JSON(javascript) object creator and exam」· Java 代码 · 共 42 行

JAVA
42
字号
import java.net.*;import java.io.*;class weblog {  public static void main(String args[]) {    String thisLine;    String thisIP;    String theRest;    int index;    InetAddress thisAddress;    byte[] address;    try {      FileInputStream fin =  new FileInputStream(args[0]);      DataInputStream myInput = new DataInputStream(fin);        while ((thisLine = myInput.readLine()) != null) {          index = thisLine.indexOf(" ", 0);          thisIP = thisLine.substring(0, index);          theRest = thisLine.substring(index, thisLine.length());          try {            thisAddress = InetAddress.getByName(thisIP);            address = thisAddress.getAddress();            System.out.println(InetAddressFactory.newInetAddress(address).getHostName() + theRest);          }          catch (UnknownHostException e) {            System.out.println(thisLine);          }       } // while loop ends here    }    catch (IOException e) {      System.out.println("Exception: " + e);    }  }  // end main}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?