Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - java聊天软件
Search - java聊天软件 - List
这是一个Java聊天程序的源代码,可以直接运行,希望对大家有用.
Date : 2009-05-27 Size : 7.4kb User : zj_shandong

这个是服务器 import java.awt.*; import java.awt.event.*; import java.net.*; import javax.swing.*; public class UDPServerDemo extends JFrame{ int port=2345; //端口号 public UDPServerDemo(){ try{ byte[] buffer=new byte[256]; //缓冲区数组 DatagramSocket socket=new DatagramSocket(port); //实例化数据报Socket DatagramPacket packet; System.out.println("Server start..."); //输出运行信息 while (true){ packet=new DatagramPacket(buffer,buffer.length); //实例化数据报 socket.receive(packet); //接受请求 InetAddress target=packet.getAddress(); System.out.println("Received from"+target); //输出请求地址 int port=packet.getPort(); //得到接收端口 byte[] message="This is server,Who are you?".getBytes(); //服务器返回信息 packet=new DatagramPacket(message,message.length,target,port); //实例化数据报 socket.send(packet); //发送数据报 } } catch (Exception ex){ ex.printStackTrace(); //输出出错信息 } } public static void main(String[] args){ new UDPServerDemo(); } }
Date : 2010-12-15 Size : 1.04mb User : 594353482@qq.com

java 聊天室,含头像
Date : 2011-06-21 Size : 5.96mb User : 495291663@qq.com

基于java编写的一款简单的聊天软件,比较简易,新手上路,多多照顾啊!!
Date : 2011-11-12 Size : 13.25kb User : 1553556149@qq.com

一个用java编写的带有Applet的聊天程序,具有不错的功能.-use a java applet prepared with the chat program, with good function.
Date : 2025-07-06 Size : 137kb User : 士大夫

用JAVA做的聊天软件,有安装程序和源代码 Visual Chat 1.91 Developer Edition-do with Java chat software, installation procedures and source code in Visual Developer Edition Chat 1.91
Date : 2025-07-06 Size : 323kb User : 仙道

ChatOneToOne 是一个局域网点对点来聊天软件附有源代码,适合于初学者-ChatOneToOne LAN is a peer-to-peer software to chat with the source code, suitable for beginners
Date : 2025-07-06 Size : 2kb User : yao-0910

DL : 0
本文件是C/S模式的聊天软件,开发环境是java,是一个简洁的聊天软件-C/S mode chat software development environment is java, is a simple chat software
Date : 2025-07-06 Size : 108kb User : 黄复兴

一个小小的聊天软件。用java实现。采用服务器/客户端结构。-a little chat software. Using java to achieve. Using the server/client structure.
Date : 2025-07-06 Size : 4kb User : 周慧慧

DL : 0
java实现的p2p聊天软件 能列举出在线主机列表 并与任意主机聊天-java chat realize the p2p software list online list of hosts and chat with any host
Date : 2025-07-06 Size : 18kb User : sys2004

JAVA聊天软件,可以实现连接,注销,公聊等功能-JAVA chat software, you can connect, write-offs, public chat features such as
Date : 2025-07-06 Size : 1.63mb User : zhou hong

JAVA聊天软件,socket 和多线程序-JAVA chat software, socket and multi-line procedures
Date : 2025-07-06 Size : 13kb User : RORO

Java聊天软件chat_src用定制的GUI开发-Java chat software chat_src development with customized GUI
Date : 2025-07-06 Size : 137kb User : liao

DL : 0
一个非常好的JAVA版聊天软件源码. 一个非常好的JAVA版聊天软件源码.-very good
Date : 2025-07-06 Size : 332kb User : wliao

基于UDP协议的类似QQ的聊天软件。包括了QQ的基本功能模块。-UDP-based protocol similar to the QQ chat software. Includes the basic functions of QQ module.
Date : 2025-07-06 Size : 9kb User : qi shu

DL : 0
用JAVA做的聊天软件,有安装程序和源代码.-The chat with JAVA software installation procedures and source code
Date : 2025-07-06 Size : 339kb User : 廖望

一款自己编写的局域网聊天软件 通过JAVA平台 可以传送文件 图片 表情 视频 等信息 -I have written a LAN chat software can be transmitted through the JAVA platform file picture video information such as facial expressions
Date : 2025-07-06 Size : 4.18mb User : 蔡德洋

基于Java编写的聊天软件。有客户端和服务器端。
Date : 2014-07-03 Size : 281.2kb User : 277418011

基于Java的聊天软件源代码,适合初学者研究使用。(Java based chat software source code, suitable for beginners to study the use of.)
Date : 2025-07-06 Size : 336kb User : 赵本山

自己编写的java聊天软件,类似于qq,可以作为java课程设计(java chat software,Similar to QQ, it can be designed as a java course)
Date : 2025-07-06 Size : 64kb User : Nishino
« 12 3 4 5 6 7 8 9 10 ... 20 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.