devxlogo

Get the Current Host Info

Get the Current Host Info

This program prints out the name and the address (in both textual and numerical forms) of the machine on which its run, using the InetAddress singleton.

import java.net.*;public class CurrentHost {  public static void main(String[] args) throws UnknownHostException {    InetAddress address = InetAddress.getLocalHost();    System.out.println("This host's name: " + address.getHostName());    System.out.println("This host's fully qualified address: " +      address.getCanonicalHostName());    System.out.println("This host's numerical address: " +      address.getHostAddress());  }}
See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist