public class UdpServerTest { /** * @param args * @throws SocketException */ public static void main(String[] args) throws SocketException { final DatagramSocket server = new DatagramSocket(41017); new Thread(new Runnable() { @Override public void run