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

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

Security OAuth2 单点登录流程

单点登录(英语:Single sign-on,缩写为 SSO),又译为单一签入,一种对于许多相互关连,但是又是各自独立的软件系统,提供访问控制的属性。当拥有这项属性时,当用户登录时,就可以获取所有系统的访问权限,不用对每个单一系统都逐一登录。这项功能通常是以轻型目录访问协议(LDAP)来实现,在服务器上会将用户信息存储到LDAP数据库中。相同的,单一注销(single sign-off)就是指

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

不懂推荐算法也能设计推荐系统

本文以商业化应用推荐为例,告诉我们不懂推荐算法的产品,也能从产品侧出发, 设计出一款不错的推荐系统。 相信很多新手产品,看到算法二字,多是懵圈的。 什么排序算法、最短路径等都是相对传统的算法(注:传统是指科班出身的产品都会接触过)。但对于推荐算法,多数产品对着网上搜到的资源,都会无从下手。特别当某些推荐算法 和 “AI”扯上关系后,更是加大了理解的难度。 但,不了解推荐算法,就无法做推荐系

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template