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()
}
}
好友类里面包括姓名 联系方式 邮箱等等class Friend{
String name
String contact
String email
Friend(String name,String contact,String email){
构造函数
}
getter
setter
}
上面只是个雏形自己完善
用一个ArrayList<Friend>来储存所有的Friends
取,删或者增直接调用ArrayList的函数
用swing来显示所有的好友。。for循环读取ArrayList
然后批量加入swing GUI显示就行
可以用JTable或者直接用JPanel等等
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)