Sending Data to a Port in UDP Format

Sending Data to a Port in UDP Format

The ByteBuffer Class (from the java.nio package) helps you to write data in UDP by converting them to the respective bytes they generally occupy. This is especially helpful when trying to control network traffic.

The example code, by default, has the same computer as the destination and a port 10001 as the listening port. A different process can listen on this port and receive the UDP message sent by this application.

The Code:import java.net.*;import java.io.*;import java.nio.*;public class SendUDPData{private String serverIP = "127.0.0.1";private int listeningPort = 10001;private DatagramSocket datagramSocket = null;public static void main(String args[]){SendUDPData sendUDPData = new SendUDPData();sendUDPData.sendData();}private void sendData(){try{// Initializing a byte Arraybyte[] byteDataArr = new byte[10];ByteBuffer configDataBuffer = ByteBuffer.wrap(byteDataArr);// Initializing the variablesint configRackID = 12;int configPortID = 760;//populating the configDataBuffer with the required values.//Will populate the first 4 bytesconfigDataBuffer.putInt(configRackID);//Will populate the second 4 bytesconfigDataBuffer.putInt(configPortID);// and so on...//Two ways of creating a datagramSocket. Can use the one required//Will create a DatagramSocket on port 10000datagramSocket = new DatagramSocket(10000);//Will create a DatagramSocket on any available portdatagramSocket = new DatagramSocket();//Will connect to the IPAddress provided by the serverIP and to theport specified by listeningPortdatagramSocket.connect(InetAddress.getByName(serverIP),listeningPort);datagramSocket.send(new DatagramPacket(byteDataArr,byteDataArr.length));datagramSocket.close();System.out.println("Data sent successfully.");}catch(SocketException se){//handle SocketExceptionSystem.out.println("SocketException: "+se);}catch(UnknownHostException uhe){//handle UnknownHostExceptionSystem.out.println("UnknownHostException: "+uhe);}catch(IOException ioe){//handle IOExceptionSystem.out.println("IOException: "+ioe);}catch(Exception e){//handle ExceptionSystem.out.println("Exception: "+e);}finally{if (datagramSocket != null)datagramSocket.close();}}}
Share the Post:
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

ransomware cyber attack

Why Is Ransomware Such a Major Threat?

One of the most significant cyber threats faced by modern organizations is a ransomware attack. Ransomware attacks have grown in both sophistication and frequency over the past few years, forcing

data dictionary

Tools You Need to Make a Data Dictionary

Data dictionaries are crucial for organizations of all sizes that deal with large amounts of data. they are centralized repositories of all the data in organizations, including metadata such as