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://codercto.com/courses/l/12.html

查看所有标签

Head First Rails

Head First Rails

David Griffiths / O'Reilly Media / 2008-12-30 / USD 49.99

Figure its about time that you hop on the Ruby on Rails bandwagon? You've heard that it'll increase your productivity exponentially, and allow you to created full fledged web applications with minimal......一起来看看 《Head First Rails》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具