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

📄 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 + -