Java 实例 - 使用 Socket 连接到指定主机
Java 教程
· 2019-02-11 21:28:02
以下实例演示了如何使用 net.Socket 类的 getInetAddress() 方法来连接到指定主机:
Main.java 文件
import java.net.InetAddress;
import java.net.Socket;
public class WebPing {
public static void main(String[] args) {
try {
InetAddress addr;
Socket sock = new Socket("www.codercto.com", 80);
addr = sock.getInetAddress();
System.out.println("连接到 " + addr);
sock.close();
} catch (java.io.IOException e) {
System.out.println("无法连接 " + args[0]);
System.out.println(e);
}
}
}
以上代码运行输出结果为:
连接到 http:/www.codercto.com/222.73.134.120
点击查看所有 Java 教程 文章: https://www.codercto.com/courses/l/12.html
PHP and MySQL Web Development (3rd Edition) (Developer's Library
Luke Welling、Laura Thomson / Sams / 2004-09-29 / USD 49.99
We've taken the best and made it even better. The third edition of the best-selling PHP and MySQL Web Development has been updated to include material and code on MySQL 5, PHP 5 and on PHPs object mod......一起来看看 《PHP and MySQL Web Development (3rd Edition) (Developer's Library》 这本书的介绍吧!