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聊天工具