Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.net.DatagramPacket;
import java.net.DatagramSocket;
import java.net.InetSocketAddress;

public class Main {
    private final static int BUFSIZE = 20;

    public static void main(String args[]) {
        try {

            int port = 80;

            DatagramSocket ds = new DatagramSocket(port);

            byte buffer[] = new byte[BUFSIZE];

            while (true) {

                DatagramPacket dp = new DatagramPacket(buffer, buffer.length);

                dp.setSocketAddress(InetSocketAddress.createUnresolved("google.com", 8080));

            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}