java在线聊天项目1.3版设计好友列表框功能补充,因只要用户登录就发送一串新列表,导致不同客户端好友列表不同问题

本文主要是介绍java在线聊天项目1.3版设计好友列表框功能补充,因只要用户登录就发送一串新列表,导致不同客户端好友列表不同问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

解决完毕后效果图:

 

好友列表Vector添加的时候进行判断,如果有相同的则不添加

int flag=0;
for (int i = 0; i < names.size(); i++) {
if (name.equals(names.get(i))) {
flag=1;
}
}
if(flag==0) {
names.add(name);
}

好友列表窗代码如下:

package com.swift.frame;import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.net.Socket;
import java.net.SocketException;
import java.util.ArrayList;
import java.util.List;
import java.util.Vector;import javax.swing.DefaultListModel;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JPanel;
import javax.swing.JPopupMenu;
import javax.swing.JTabbedPane;
import javax.swing.SwingConstants;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;public class FriendsFrame extends JFrame {private static final long serialVersionUID = 1L;private Socket s;private DataOutputStream dos;private DataInputStream dis;private boolean connected = false;Vector<String> names = new Vector<String>();JList<String> list = null;public FriendsFrame(String name, Socket socket) {super("欢迎 " + ":" + socket.getLocalPort());this.s = socket;connected = true;names.add("登录用户");try {this.dos = new DataOutputStream(s.getOutputStream());this.dis = new DataInputStream(s.getInputStream());} catch (IOException e) {e.printStackTrace();}JFrame.setDefaultLookAndFeelDecorated(true);JDialog.setDefaultLookAndFeelDecorated(true);try {UIManager.setLookAndFeel("javax.swing.plaf.nimbus.NimbusLookAndFeel");} catch (ClassNotFoundException e1) {e1.printStackTrace();} catch (InstantiationException e1) {e1.printStackTrace();} catch (IllegalAccessException e1) {e1.printStackTrace();} catch (UnsupportedLookAndFeelException e1) {e1.printStackTrace();}setBounds(100, 100, 247, 581);setVisible(true);final JPanel panel = new JPanel();panel.setLayout(new BorderLayout());getContentPane().add(panel, BorderLayout.NORTH);final JLabel label = new JLabel(new ImageIcon("Images/logo.jpg"));label.setText("New JLabel");panel.add(label, BorderLayout.WEST);label.setPreferredSize(new Dimension(74, 74));final JPanel panel_1 = new JPanel();panel_1.setLayout(new BorderLayout());panel.add(panel_1, BorderLayout.CENTER);final JLabel advancingSwiftLabel = new JLabel();advancingSwiftLabel.setText(name);panel_1.add(advancingSwiftLabel, BorderLayout.CENTER);final JLabel neverWasterLabel = new JLabel();neverWasterLabel.setText("Never waste time any more");panel_1.add(neverWasterLabel, BorderLayout.SOUTH);final JPanel panel_2 = new JPanel();panel_2.setLayout(new BorderLayout());getContentPane().add(panel_2, BorderLayout.SOUTH);final JPanel panel_3 = new JPanel();final FlowLayout flowLayout = new FlowLayout();flowLayout.setAlignment(FlowLayout.LEFT);panel_3.setLayout(flowLayout);panel_2.add(panel_3);final JButton button = new JButton();panel_3.add(button);button.setHorizontalTextPosition(SwingConstants.LEFT);button.setHorizontalAlignment(SwingConstants.LEFT);button.setText("设置");final JButton button_1 = new JButton();panel_3.add(button_1);button_1.setText("查找");final JPanel panel_4 = new JPanel();panel_2.add(panel_4, BorderLayout.EAST);final JButton button_2 = new JButton();panel_4.add(button_2);button_2.setText("退出");final JTabbedPane tabbedPane = new JTabbedPane();getContentPane().add(tabbedPane, BorderLayout.CENTER);final JPanel panel_5 = new JPanel();tabbedPane.addTab("好友列表", null, panel_5, null);list = new JList<String>();panel_5.add(list);final JPanel panel_6 = new JPanel();tabbedPane.addTab("群聊", null, panel_6, null);final JPanel panel_7 = new JPanel();tabbedPane.addTab("聊天记录", null, panel_7, null);this.setDefaultCloseOperation(EXIT_ON_CLOSE);final JMenuBar menuBar = new JMenuBar();setJMenuBar(menuBar);final JMenu menu = new JMenu();menu.setText("操作");menuBar.add(menu);final JMenuItem newItemMenuItem = new JMenuItem();newItemMenuItem.setText("设置");menu.add(newItemMenuItem);final JMenuItem newItemMenuItem_1 = new JMenuItem();newItemMenuItem_1.setText("空间");menu.add(newItemMenuItem_1);final JMenuItem newItemMenuItem_2 = new JMenuItem();newItemMenuItem_2.setText("邮箱");menu.add(newItemMenuItem_2);final JMenu menu_1 = new JMenu();menu_1.setText("会员");menu.add(menu_1);final JMenuItem newItemMenuItem_3 = new JMenuItem();newItemMenuItem_3.setText("会员官网");menu_1.add(newItemMenuItem_3);final JMenuItem newItemMenuItem_4 = new JMenuItem();newItemMenuItem_4.setText("会员专区");menu_1.add(newItemMenuItem_4);menu.addSeparator();final JMenu menu_2 = new JMenu();menu_2.setText("安全");menu.add(menu_2);final JMenuItem newItemMenuItem_5 = new JMenuItem();newItemMenuItem_5.setText("紧急冻结");menu_2.add(newItemMenuItem_5);final JMenuItem newItemMenuItem_6 = new JMenuItem();newItemMenuItem_6.setText("密码保护");menu_2.add(newItemMenuItem_6);final JMenuItem newItemMenuItem_7 = new JMenuItem();newItemMenuItem_7.setText("退出");menu.add(newItemMenuItem_7);final FlowLayout flowLayout_1 = new FlowLayout();flowLayout_1.setAlignment(FlowLayout.RIGHT);this.addWindowListener(new WindowAdapter() {@Overridepublic void windowClosing(WindowEvent e) {disconnect();System.exit(0);}});// 调用傻傻的等待接收列表信息new Thread(new WaitingReceive()).start();// 双击激活聊天对话框list.addMouseListener(new MouseAdapter() {@Overridepublic void mouseClicked(MouseEvent e) {if (e.getClickCount() == 2) {new ChatFrame(s);}}});}public void disconnect() {try {if (dos != null)dos.close();if (dis != null)dis.close();if (s != null)s.close();} catch (IOException e) {e.printStackTrace();}}class WaitingReceive implements Runnable {@Overridepublic void run() {try {while (connected) {String name = dis.readUTF();System.out.println(name);int flag=0;for (int i = 0; i < names.size(); i++) {if (name.equals(names.get(i))) {flag=1;}}if(flag==0) {names.add(name);}list.setListData(names);}} catch (SocketException e) {System.out.println("a client has been closed!");} catch (IOException e) {e.printStackTrace();}}}/*** WindowBuilder generated method.<br>* Please don't remove this method or its invocations.<br>* It used by WindowBuilder to associate the {@link javax.swing.JPopupMenu} with* parent.*/private static void addPopup(Component component, final JPopupMenu popup) {component.addMouseListener(new MouseAdapter() {public void mousePressed(MouseEvent e) {if (e.isPopupTrigger())showMenu(e);}public void mouseReleased(MouseEvent e) {if (e.isPopupTrigger())showMenu(e);}private void showMenu(MouseEvent e) {popup.show(e.getComponent(), e.getX(), e.getY());}});}
}

 

这篇关于java在线聊天项目1.3版设计好友列表框功能补充,因只要用户登录就发送一串新列表,导致不同客户端好友列表不同问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/762189

相关文章

Java实现Excel与HTML互转

《Java实现Excel与HTML互转》Excel是一种电子表格格式,而HTM则是一种用于创建网页的标记语言,虽然两者在用途上存在差异,但有时我们需要将数据从一种格式转换为另一种格式,下面我们就来看看... Excel是一种电子表格格式,广泛用于数据处理和分析,而HTM则是一种用于创建网页的标记语言。虽然两

java图像识别工具类(ImageRecognitionUtils)使用实例详解

《java图像识别工具类(ImageRecognitionUtils)使用实例详解》:本文主要介绍如何在Java中使用OpenCV进行图像识别,包括图像加载、预处理、分类、人脸检测和特征提取等步骤... 目录前言1. 图像识别的背景与作用2. 设计目标3. 项目依赖4. 设计与实现 ImageRecogni

Java中Springboot集成Kafka实现消息发送和接收功能

《Java中Springboot集成Kafka实现消息发送和接收功能》Kafka是一个高吞吐量的分布式发布-订阅消息系统,主要用于处理大规模数据流,它由生产者、消费者、主题、分区和代理等组件构成,Ka... 目录一、Kafka 简介二、Kafka 功能三、POM依赖四、配置文件五、生产者六、消费者一、Kaf

Java访问修饰符public、private、protected及默认访问权限详解

《Java访问修饰符public、private、protected及默认访问权限详解》:本文主要介绍Java访问修饰符public、private、protected及默认访问权限的相关资料,每... 目录前言1. public 访问修饰符特点:示例:适用场景:2. private 访问修饰符特点:示例:

数据库oracle用户密码过期查询及解决方案

《数据库oracle用户密码过期查询及解决方案》:本文主要介绍如何处理ORACLE数据库用户密码过期和修改密码期限的问题,包括创建用户、赋予权限、修改密码、解锁用户和设置密码期限,文中通过代码介绍... 目录前言一、创建用户、赋予权限、修改密码、解锁用户和设置期限二、查询用户密码期限和过期后的修改1.查询用

详解Java如何向http/https接口发出请求

《详解Java如何向http/https接口发出请求》这篇文章主要为大家详细介绍了Java如何实现向http/https接口发出请求,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 用Java发送web请求所用到的包都在java.net下,在具体使用时可以用如下代码,你可以把它封装成一

关于@MapperScan和@ComponentScan的使用问题

《关于@MapperScan和@ComponentScan的使用问题》文章介绍了在使用`@MapperScan`和`@ComponentScan`时可能会遇到的包扫描冲突问题,并提供了解决方法,同时,... 目录@MapperScan和@ComponentScan的使用问题报错如下原因解决办法课外拓展总结@

MybatisGenerator文件生成不出对应文件的问题

《MybatisGenerator文件生成不出对应文件的问题》本文介绍了使用MybatisGenerator生成文件时遇到的问题及解决方法,主要步骤包括检查目标表是否存在、是否能连接到数据库、配置生成... 目录MyBATisGenerator 文件生成不出对应文件先在项目结构里引入“targetProje

C#使用HttpClient进行Post请求出现超时问题的解决及优化

《C#使用HttpClient进行Post请求出现超时问题的解决及优化》最近我的控制台程序发现有时候总是出现请求超时等问题,通常好几分钟最多只有3-4个请求,在使用apipost发现并发10个5分钟也... 目录优化结论单例HttpClient连接池耗尽和并发并发异步最终优化后优化结论我直接上优化结论吧,

SpringBoot使用Apache Tika检测敏感信息

《SpringBoot使用ApacheTika检测敏感信息》ApacheTika是一个功能强大的内容分析工具,它能够从多种文件格式中提取文本、元数据以及其他结构化信息,下面我们来看看如何使用Ap... 目录Tika 主要特性1. 多格式支持2. 自动文件类型检测3. 文本和元数据提取4. 支持 OCR(光学