• 大小: 0.01M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: Java
  • 标签: java  

资源简介


用java编写的局域网聊天,可以群聊和私聊

资源截图

代码片段和文件信息

import java.io.*;
import java.net.*;
import java.awt.*;
import java.awt.event.*;
class ClientWindows extends frame implements ActionListenerWindowListenerTextListenerItemListenerKeyListener{
TextArea chatRecord; //聊天区域
TextField msgEditor; //发送的聊天信息
Label transNamewelcomeInfofriendInfo; //一些辅助信息
Button sendButton; //发送按钮
public List friendList; //好友列表
Socket transferSocket; //与服务器连接的socket
PrintWriter socketWriter; //输出流对象
Font allFont;  //字体
public String nick; //使用的昵称
ClientWindows(String windowsName){ //图形界面的初始化
super(windowsName);
allFont=new Font(“宋体“Font.TRUETYPE_FONT16);
this.setName(windowsName);
this.setSize(600 528);
this.setLayout(null);
this.setBackground(Color.LIGHT_GRAY);
this.setResizable(false);
addWindowListener(this); //向WindowListener中添加本窗口
chatRecord=new TextArea();
chatRecord.setLocation(032);
chatRecord.set

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       7022  2008-05-29 13:58  聊天软件\ClientWindows.class

     文件        498  2008-05-29 13:58  聊天软件\GraphClient.class

     文件       8057  2008-05-29 13:58  聊天软件\GraphClient.java

     文件       2428  2008-05-29 13:58  聊天软件\ReceiveThread.class

     文件       1595  2008-05-29 13:42  聊天软件\Server.class

     文件       5247  2008-05-29 13:42  聊天软件\Server.java

     文件       4578  2008-05-29 13:42  聊天软件\SocketThread.class

     目录          0  2008-11-26 11:12  聊天软件

----------- ---------  ---------- -----  ----

                29425                    8


评论

共有 条评论