简体   繁体   中英

Java socket from tcp to udp

how do I get this code (tcp) to udp in java? Thanks.

ServerSocket servsock2 = new ServerSocket(13367);
Socket sock = servsock2.accept();
System.out.println("Client connected.");
OutputStream os = sock2.getOutputStream();
while(true){
    os.write(int_value);
}

The following Java tutorial should get you started:All About Datagrams .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM