Java+Swing+mysql仿QQ聊天工具

news/2024/11/22 21:30:22/

Java+Swing+mysql仿QQ聊天工具

  • 一、系统介绍
  • 二、功能展示
    • 1.用户登陆
    • 2.好友列表
    • 3.好友聊天
    • 4.服务器日志
  • 三、系统实现
  • 四、其它
    • 1.其他系统实现
    • 2.获取源码

一、系统介绍

系统主要功能:用户登陆、好友列表、好友聊天、服务器日志

二、功能展示

1.用户登陆

在这里插入图片描述

2.好友列表

在这里插入图片描述

3.好友聊天

在这里插入图片描述
在这里插入图片描述

4.服务器日志

在这里插入图片描述

三、系统实现

1.Chat.java


package com.client.view;import com.client.tools.ManageChatFrame;
import com.client.tools.ManageThread;
import com.common.Message;
import com.common.MsgType;import javax.swing.*;
import javax.swing.text.BadLocationException;
import javax.swing.text.Document;
import javax.swing.text.SimpleAttributeSet;
import javax.swing.text.StyleConstants;
import java.awt.event.*;
import java.awt.*;
import java.io.IOException;
import java.io.ObjectOutput;
import java.io.ObjectOutputStream;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;/*** 聊天界面,点击“消息记录”按钮即可显示聊天记录,再次点击即可切换回图片*/
public class Chat extends JFrame implements ActionListener,MouseListener {private JPanel panel_north;//北部区域面板private JLabel jbl_touxiang;//头像private JLabel jbl_friendname;//好友名称private JButton btn_exit, btn_min;//最小化和关闭按钮//头像下方7个功能按钮(未实现)private JButton btn_func1_north, btn_func2_north, btn_func3_north, btn_func4_north, btn_func5_north, btn_func6_north, btn_func7_north;//聊天内容显示面板private JTextPane panel_Msg;private JPanel panel_south;//南部区域面板private JTextPane jtp_input;//消息输入区//消息输入区上方9个功能按钮(未实现)private JButton btn_func1_south, btn_func2_south, btn_func3_south,btn_func4_south, btn_func5_south, btn_func6_south, btn_func7_south, btn_func8_south, btn_func9_south;private JButton recorde_search;//查看消息记录按钮private JButton btn_send, btn_close;//消息输入区下方关闭和发送按钮private JPanel panel_east;//东部面板private CardLayout cardLayout;//卡片布局//默认东部面板显示一张图,点击查询聊天记录按钮切换到聊天记录面板private final JLabel label1 = new JLabel(new ImageIcon("image/dialogimage/hh.png"));private JTextPane panel_Record;//聊天记录显示面板private boolean isDragged = false;//鼠标拖拽窗口标志private Point frameLocation;//记录鼠标点击位置private String myId;//本人账号private String myName;private String friendId;//好友账号private DateFormat df;//日期解析public Chat(String myId, String myName, String friendId, String friendName) {this.myId = myId;this.friendId = friendId;this.myName = myName;df = new SimpleDateFormat("yyyy-MM-dd a hh:mm:ss");//获取窗口容器Container c = this.getContentPane();//设置布局c.setLayout(null);//北部面板panel_north = new JPanel();panel_north.setBounds(0, 0, 729, 92);panel_north.setLayout(null);//添加北部面板c.add(panel_north);//左上角灰色头像jbl_touxiang = new JLabel(new ImageIcon("image/dialogimage/huisetouxiang.png"));jbl_touxiang.setBounds(10, 10, 42, 42);panel_north.add(jbl_touxiang);//头像右方正在聊天的对方姓名jbl_friendname = new JLabel(friendName+"("+friendId+")");jbl_friendname.setBounds(62, 21, 105, 20);panel_north.add(jbl_friendname);//右上角最小化按钮btn_min = new JButton(new ImageIcon ("image/dialogimage/min.png"));btn_min.addActionListener(e -> setExtendedState(JFrame.ICONIFIED));btn_min.setBounds(668, 0, 30, 30);panel_north.add(btn_min);//右上角关闭按钮btn_exit = new JButton(new ImageIcon ("image/dialogimage/exit.jpg"));btn_exit.addActionListener(this);btn_exit.setBounds(698, 0, 30, 30);panel_north.add(btn_exit);//头像下方功能按钮//功能按钮1btn_func1_north = new JButton(new ImageIcon("image/dialogimage/yuyin.png"));btn_func1_north.setBounds(10, 62, 36, 30);panel_north.add(btn_func1_north);//功能按钮2btn_func2_north = new JButton(new ImageIcon("image/dialogimage/shipin.png"));btn_func2_north.setBounds(61, 62, 36, 30);panel_north.add(btn_func2_north);//功能按钮3btn_func3_north = new JButton(new ImageIcon("image/dialogimage/tranfile.jpg"));btn_func3_north.setBounds(112, 62, 36, 30);panel_north.add(btn_func3_north);//功能按钮4btn_func4_north = new JButton(new ImageIcon("image/dialogimage/createteam.jpg"));btn_func4_north.setBounds(163, 62, 36, 30);panel_north.add(btn_func4_north);//功能按钮5btn_func5_north = new JButton(new ImageIcon("image/dialogimage/yuancheng.png"));btn_func5_north.setBounds(214, 62, 36, 30);panel_north.add(btn_func5_north);//功能按钮6btn_func6_north = new JButton(new ImageIcon("image/dialogimage/sharedisplay.png"));btn_func6_north.setBounds(265, 62, 36, 30);panel_north.add(btn_func6_north);//功能按钮7btn_func7_north = new JButton(new ImageIcon("image/dialogimage/yingyong.jpg"));btn_func7_north.setBounds(318, 62, 36, 30);panel_north.add(btn_func7_north);//设置北部面板背景色//panel_north.setBackground(new Color(105, 197, 239));panel_north.setBackground(new Color(22, 154, 228));//中部聊天内容显示部分panel_Msg = new JTextPane();JScrollPane scrollPane_Msg = new JScrollPane(panel_Msg);scrollPane_Msg.setBounds(0, 92, 446, 270);c.add(scrollPane_Msg);//南部面板panel_south = new JPanel();panel_south.setBounds(0, 370, 446, 170);panel_south.setLayout(null);//添加南部面板c.add(panel_south);//内容输入区jtp_input = new JTextPane();jtp_input.setBounds(0, 34, 446, 105);//添加到南部面板panel_south.add(jtp_input);//文本输入区上方功能按钮//功能按钮1btn_func1_south = new JButton(new ImageIcon("image/dialogimage/word.png"));btn_func1_south.setBounds(10, 0, 30, 30);panel_south.add(btn_func1_south);//功能按钮2btn_func2_south = new JButton(new ImageIcon("image/dialogimage/biaoqing.png"));btn_func2_south.setBounds(47, 0, 30, 30);panel_south.add(btn_func2_south);//功能按钮3btn_func3_south = new JButton(new ImageIcon("image/dialogimage/magic.jpg"));btn_func3_south.setBounds(84, 0, 30, 30);panel_south.add(btn_func3_south);//功能按钮4btn_func4_south = new JButton(new ImageIcon("image/dialogimage/zhendong.jpg"));btn_func4_south.setBounds(121, 0, 30, 30);panel_south.add(btn_func4_south);//功能按钮5btn_func5_south = new JButton(new ImageIcon("image/dialogimage/yymessage.jpg"));btn_func5_south.setBounds(158, 0, 30, 30);panel_south.add(btn_func5_south);//功能按钮6btn_func6_south = new JButton(new ImageIcon("image/dialogimage/dgninput.jpg"));btn_func6_south.setBounds(195, 0,30, 30);panel_south.add(btn_func6_south);//功能按钮7btn_func7_south = new JButton(new ImageIcon("image/dialogimage/sendimage.jpg"));btn_func7_south.setBounds(232, 0, 30, 30);panel_south.add(btn_func7_south);//功能按钮8btn_func8_south = new JButton(new ImageIcon("image/dialogimage/diange.jpg"));btn_func8_south.setBounds(269, 0, 30, 30);panel_south.add(btn_func8_south);//功能按钮9btn_func9_south = new JButton(new ImageIcon("image/dialogimage/jietu.jpg"));btn_func9_south.setBounds(306, 0, 30, 30);panel_south.add(btn_func9_south);//查询聊天记录recorde_search = new JButton(new ImageIcon("image/dialogimage/recorde.png"));recorde_search.addActionListener(e-> {System.out.println("点击查找聊天记录");cardLayout.next(panel_east);});recorde_search.setBounds(350, 0, 96, 30);panel_south.add(recorde_search);//消息关闭按钮btn_close = new JButton(new ImageIcon("image/dialogimage/close.jpg"));btn_close.setBounds(290, 145, 64, 24);btn_close.addActionListener(this);panel_south.add(btn_close);//消息发送按钮btn_send = new JButton(new ImageIcon("image/dialogimage/send.jpg"));btn_send.addActionListener(this);btn_send.setBounds(381, 145, 64, 24);panel_south.add(btn_send);//东部面板(图片和聊天记录)panel_east = new JPanel();//卡片布局cardLayout = new CardLayout(2,2);panel_east.setLayout(cardLayout);panel_east.setBounds(444, 91, 285, 418);//添加东部面板c.add(panel_east);//显示聊天记录面板panel_Record = new JTextPane();panel_Record.setText("-----------------------------聊天记录--------------------------\n\n");JScrollPane scrollPane_Record = new JScrollPane(panel_Record);scrollPane_Record.setBounds(2, 2, 411, 410);//添加到东部面板panel_east.add(label1);panel_east.add(scrollPane_Record);//注册鼠标事件监听器this.addMouseListener(new MouseAdapter() {@Overridepublic void mouseReleased(MouseEvent e) {//鼠标释放isDragged = false;//光标恢复setCursor(new Cursor(Cursor.DEFAULT_CURSOR));}@Overridepublic void mousePressed(MouseEvent e) {//鼠标按下//获取鼠标相对窗体位置frameLocation = new Point(e.getX(),e.getY());isDragged = true;//光标改为移动形式if(e.getY() < 92)setCursor(new Cursor(Cursor.MOVE_CURSOR));}});//注册鼠标事件监听器this.addMouseMotionListener(new MouseMotionAdapter() {@Overridepublic void mouseDragged(MouseEvent e) {//指定范围内点击鼠标可拖拽if(e.getY() < 92){//如果是鼠标拖拽移动if(isDragged) {Point loc = new Point(getLocation().x+e.getX()-frameLocation.x,getLocation().y+e.getY()-frameLocation.y);//保证鼠标相对窗体位置不变,实现拖动setLocation(loc);}}}});this.setIconImage(new ImageIcon("image/login/Q.png").getImage());//修改窗体默认图标this.setSize(728, 553);//设置窗体大小this.setUndecorated(true);//去掉自带装饰框this.setVisible(true);//设置窗体可见}@Overridepublic void mouseClicked(MouseEvent e) {}@Overridepublic void mousePressed(MouseEvent e) {}@Overridepublic void mouseReleased(MouseEvent e) {}@Overridepublic void mouseEntered(MouseEvent e) {}@Overridepublic void mouseExited(MouseEvent e) {}@Overridepublic void actionPerformed(ActionEvent e) {if(e.getSource() == btn_send){System.out.println("发送");sendMsg(this, this.myName);}else if(e.getSource() == btn_close | e.getSource()  == btn_exit) {ManageChatFrame.removeChatFrame(myId + friendId);System.out.println("remove chatFrame="+myId + friendId);this.dispose();}}/*** 实现消息发送* @param f*/public void sendMsg(JFrame f, String senderName){String str = jtp_input.getText();if(!str.equals("")){Message msg = new Message();msg.setType(MsgType.COMMON_MESSAGE);msg.setSenderId(this.myId);msg.setSenderName(senderName);msg.setGetterId(this.friendId);msg.setContent(str);msg.setSendTime(df.format(new Date()));try {ObjectOutput out = new ObjectOutputStream(ManageThread.getThread(this.myId).getClient().getOutputStream());out.writeObject(msg);System.out.println("发送成功");showMessage(msg,true);jtp_input.setText("");} catch (IOException e) {e.printStackTrace();}}else{JOptionPane.showMessageDialog(f,"不能发送空内容!");}}/*** 将接收到的消息显示出来* @param msg*/public void showMessage(Message msg, boolean fromSelf) {showMessage(panel_Msg, msg, fromSelf);//先显示到聊天内容面板showMessage(panel_Record, msg, fromSelf);//再显示到聊天记录面板}/*** 将消息内容显示到指定面板* @param jtp* @param msg* @param fromSelf*/public void showMessage(JTextPane jtp, Message msg, boolean fromSelf) {//设置显示格式SimpleAttributeSet attrset = new SimpleAttributeSet();StyleConstants.setFontFamily(attrset, "仿宋");StyleConstants.setFontSize(attrset,14);Document docs = jtp.getDocument();String info = null;try {if(fromSelf){//发出去的消息内容info = "我  ";//自己账号:紫色StyleConstants.setForeground(attrset, Color.MAGENTA);docs.insertString(docs.getLength(), info, attrset); StyleConstants.setForeground(attrset, Color.red);info = msg.getSendTime()+":\n";//发送时间:绿色StyleConstants.setForeground(attrset, Color.black);docs.insertString(docs.getLength(), info, attrset);info = " "+msg.getContent()+"\n";//发送内容:黑色StyleConstants.setFontSize(attrset,16);StyleConstants.setForeground(attrset, Color.green);docs.insertString(docs.getLength(), info, attrset);}else{//接收到的消息内容info = msg.getSenderName()+"("+msg.getSenderId()+")  ";//对方账号:红色StyleConstants.setForeground(attrset, Color.red);docs.insertString(docs.getLength(), info, attrset); StyleConstants.setForeground(attrset, Color.red);info = msg.getSendTime()+":\n";//发送时间:绿色StyleConstants.setForeground(attrset, Color.black);docs.insertString(docs.getLength(), info, attrset);info = " "+msg.getContent()+"\n";//发送内容:蓝色StyleConstants.setFontSize(attrset,16);StyleConstants.setForeground(attrset, Color.blue);docs.insertString(docs.getLength(), info, attrset);}} catch (BadLocationException e) {e.printStackTrace();}}}

四、其它

1.其他系统实现

Java+Swing实现学生选课管理系统
Java+Swing实现学校教务管理系统
Java+Swing+sqlserver学生成绩管理系统
Java+Swing用户信息管理系统
Java+Swing实现的五子棋游戏
基于JavaSwing 银行管理系统
Java+Swing+mysql仿QQ聊天工具
Java+Swing 聊天室
Java+Swing+dat文件存储实现学生选课管理系统
Java+Swing可视化图像处理软件
Java+Swing学生信息管理系统
Java+Swing图书管理系统
Java+Swing图书管理系统2.0
基于java+swing+mysql图书管理系统3.0
大作业-基于java+swing+mysql北方传统民居信息管理系统

2.获取源码

点击下载
Java+Swing+mysql仿QQ聊天工具


http://www.ppmy.cn/news/364695.html

相关文章

Linux系统:常用服务端口

目录 一、理论 1.端口分类 2.传输协议 3.常用端口 一、理论 1.端口分类 一个计算机最多有65535个端口&#xff0c;端口不能重复。Linux 只有 root 用户可以使用1024以下的端口。 表1 端口分类 端口范围说明公认端口&#xff08;Well-KnownPorts&#xff09;0 - 1023这类…

intel服务器最新主板芯片组,Intel C600芯片组:数据中心集群计算平台_Intel服务器主板_服务器评测与技术-中关村在线...

英特尔C600 系列芯片组支持面向服务器、工作站和其他设备的英特尔至强E5处理器家族&#xff0c;可适用于大型技术集群、数据中心以及中小型企业等各种环境。这些芯片组提供的许多功能与英特尔C200系列芯片组相同&#xff0c;但它支持更高I/O带宽以应对企业级工作负荷。 英特尔C…

施耐德驱动器维修ELAU控制器维修C400C600

施耐德驱动器维修ELAU控制器维修C400C600 ELAU控制器维修器常见维修故障&#xff1a;短路&#xff0c;模块损坏&#xff0c;带不动负载&#xff0c;主轴准备未绪&#xff0c;驱动器未使能&#xff0c;编码器报警故障&#xff0c;主轴驱动模块故障&#xff0c;输出电压低&#…

中兴c600olt数据配置_中兴OLT开局数据配置、工程规范、版本升级介绍.ppt

您所在位置&#xff1a;网站首页 > 海量文档 &nbsp>&nbsp电子工程/通信技术&nbsp>&nbsp数据通信与网络 中兴OLT开局数据配置、工程规范、版本升级介绍.ppt49页 本文档一共被下载&#xff1a;次,您可全文免费在线阅读后下载本文档。 下载提示 1.本站…

windows11+ubuntu双系统全新安装要点笔记

备忘录 windows11启动盘制作u盘安装win11win11驱动安装及疑难问题win11 系统配置及优化4k hevc 实现流畅播放配置PC视频播放最强画质ubuntu安装下载iso制作u盘启动盘安装配置FAQwindows11 我的电脑,娱乐大师配置: 电脑型号 X64 兼容 台式电脑 (扫描时间:2021年11月24日) 操…

一名架构师,懂点硬件知识不过分吧?

大家好&#xff0c;我是飘渺。 很多架构师都是从软件开发成长起来的&#xff0c;大家在软件领域都有很深的造诣&#xff0c;大部分人对硬件接触的很少。而成为架构师后需要频繁的跟人 、硬件 、软件 、网络打交道&#xff0c; 本篇文章就给大家带来服务器硬件方面的相关知识&am…

物理真机上LUKS结合TPM的测试 —— 使用自己生成的密钥(问题版)

1. 创建磁盘空间 命令如下&#xff1a; dd if/dev/zero ofenc.disk bs1M count50 实际命令及结果如下&#xff1a; $ dd if/dev/zero ofenc.disk bs1M count50 输入了 500 块记录 输出了 500 块记录 52428800 字节 (52 MB, 50 MiB) 已复制&#xff0c;0.0598319 s&#xff…

TPM 2.0实例探索3 —— LUKS磁盘加密(5)

接前文&#xff1a;TPM 2.0实例探索3 —— LUKS磁盘加密&#xff08;4&#xff09; 本文大部分内容参考&#xff1a; Code Sample: Protecting secret data and keys using Intel Platform... 二、LUKS磁盘加密实例 4. 将密码存储于TPM的PCR 现在将TPM非易失性存储器中保护…