buen dia, tengo el siguiente codigo q abre un socket udp hacia la pagina "www.java2s.com" a traves del puerto 8081 y envia el mensaje "hello".
Pero quisiera saber q debo cambiar, para q en vez de poner esta direccion web, pueda poner la direccion IP
import java.net.*;
public class ClienteUDP
{
public static void main (String args[]) throws Exception
{
while(true)
{
InetAddress ia = InetAddress.getByName("www.java2s.com");
DatagramSocket dgSocket = new DatagramSocket();
byte buffer[] = "hello".getBytes();
DatagramPacket datagram = new DatagramPacket (buffer, buffer.length, ia, 8081);
dgSocket.send(datagram);
dgSocket.close();
}
}
}
gracias