⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 webconnect.java

📁 Java程序设计技巧与开发实例附书源代码。
💻 JAVA
字号:

import java.net.*;
import java.io.*;

public class WebConnect
{  public static void main(String args[])
   {  try
      {  Socket connection = new Socket(args[0], 80);
         System.out.println("Connection established:");
         System.out.println("Local Connection Information:");
         System.out.println("\t address:" +connection.getLocalAddress());
         System.out.println("\t port:" + connection.getLocalPort());
         System.out.println("Remote Connection Information:");
         System.out.println("\t address:" +connection.getInetAddress());
         System.out.println("\t port:" + connection.getPort());
         connection.close();
      }
      catch(UnknownHostException uhe)
      {  System.err.println("Unknown host: " + args[0]); }
      catch(IOException ioe)
      {  System.err.println("IOException: " + ioe); }
   }
}

⌨️ 快捷键说明

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