1、进入javaswing聊天室,点击好友头像添加。
2、也可以搜索账号,进行添加。
3、点击好友查询的 *** 作,进入界面,进行好友的查询。点击好友删除的 *** 作,进入界面,进行好友的删除。
个人理解是这样的:首先 每一个QQ号都存于数据库表中, 这个表我这里用User表代替 里面的字段名有
用户的id qq号 ....好友表编号 .....同事表编号 ...群表编号 等等
当用户添加好友的时候 首先找到好友的qq号 将其插入到 User 表中的好友表编号 就行了
即 每个qq用户都应该有 一个好友表 这个表有编号 User里面存的就是好友表的编号
个人理解 希望对你有所帮助,谢谢!
import javax.swing.*import javax.swing.text.JTextComponent
import java.awt.*
import java.awt.event.*
public class ChatFrame extends JFrame implements ActionListener {
private JLabel id
private JLabel group
private JLabel allas
public JTextField inputId
public JTextField inputGroup
public JTextField inputAllas
private JButton submit
private JPanel pane
public ChatFrame(){
id = new JLabel("Id")
group = new JLabel("Group")
allas = new JLabel("Allas")
inputId = new JTextField()
inputGroup = new JTextField()
inputAllas = new JTextField()
submit = new JButton("确定")
pane=new JPanel()
pane.setLayout(null)
this.getContentPane().add(pane).setBackground(Color.white)
this.getContentPane().add(pane)
pane.add(id)
pane.add(group)
pane.add(allas)
pane.add(inputId)
pane.add(inputGroup)
pane.add(inputAllas)
pane.add(submit)
id.setBounds(5,5,50,30)
group.setBounds(5,35,50,30)
allas.setBounds(5,65,50,50)
inputId.setBounds(70,5,100,30)
inputGroup.setBounds(70,35,100,30)
inputAllas.setBounds(70,65,100,30)
submit.setBounds(150,100,60,30)
submit.addActionListener(this)
this.setSize(240,180)
this.setLocation(300,300)
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE)
this.setVisible(true)
}
public void actionPerformed(ActionEvent e){
//按键监听,可添加连接数据库的 *** 作
}
public static void main(String args[]){
new ChatFrame()
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)