2022年5月12日

摘要: 创建四个类,实现双向聊天的功能。 接收线程: import java.io.IOException; import java.net.*; public class ReceiveThread implements Runnable{ private int port; public Receive 阅读全文

posted @ 2022-05-12 21:40 罗芭Remoo 阅读(64) 评论(0) 推荐(0) 编辑

摘要: UDP协议,简单的说就是,发信息。 不管对方有没有收到。 发送端: import java.net.*; public class UDP_Send { public static void main(String[] args) throws Exception { DatagramSocket 阅读全文

posted @ 2022-05-12 21:31 罗芭Remoo 阅读(47) 评论(0) 推荐(0) 编辑

摘要: InetAdress如何使用? import java.net.*; public class InetAdress { public static void main(String[] args) throws UnknownHostException { String srt = ""; Ine 阅读全文

posted @ 2022-05-12 19:39 罗芭Remoo 阅读(61) 评论(0) 推荐(0) 编辑