Creating Applet to Ping IP Address

Creating Applet to Ping IP Address

Question:
I would like to create a very simple applet that pings anIP address and returns a message stating whether that IP is alive. Icouldn’t find any straightforward answers to my problem in thejava.netpackage. How can I create a program with Java that performs this task?

Answer:
I created a little client program that opens a connection to the echoserver (always port 7) of a given host (using the domain name insteadof the IP address, hope that’s okay), sends the string “Hello,” readsthe response, then compares it with the string sent:

import java.io.*;import java.net.*;class Ping {   public static void main(String args[]) {      try {         Socket t = new Socket(args[0], 7);         DataInputStream is = new DataInputStream(t.getInputStream());         PrintStream os = new PrintStream(t.getOutputStream());         os.println(“Hello”);         String str = is.readLine();         if (str.equals(“Hello”))           System.out.println(“Alive :-)”) ;         else            System.out.println(“Dead :-(“);         t.close();      }      catch (IOException e) {System.out.println(“Error: ” + e);}   }} 

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes