hello guys,

i need help. i want to take data from a specific ip address and port and to display it.

here is my code
import java.net.DatagramSocket;
import java.net.InetSocketAddress;
import java.net.UnknownHostException;
 
public class App {
 
	public static void main (String[] args) throws UnknownHostException
	{
		try {
	        DatagramSocket s = new DatagramSocket(null);
	        InetSocketAddress address = new InetSocketAddress("141.41.1.250", 53);
	        s.bind(address);
 
	    } catch (Exception e) {
	        e.printStackTrace();
	    }
	}
}

still it cant acquire the wanted data

thanks before