package chatclient; import java.awt.*; import javax.swing.*; import java.awt.event.*; import java.net.*; public class LoginJFrame extends JFrame { JPanel contentPane; JLabel lblTitle = new JLabel(); JLabel lblHost = new JLabel(); JTextField txtName = new JTextField(); JLabel lblNick = new JLabel(); JTextField txtNick = new JTextField(); JButton btnLogin = new JButton(); JButton btnClose = new JButton(); public LoginJFrame() { try { setDefaultCloseOperation(EXIT_ON_CLOSE); jbInit(); } catch (Exception exception) { exception.printStackTrace(); } } /** * Component initialization. * * @throws java.lang.Exception */ private void jbInit() throws Exception { contentPane = (JPanel) getContentPane(); contentPane.setLayout(null); setSize(new Dimension(353, 263)); setTitle("用户登录"); lblTitle.setFont(new java.awt.Font("Dialog", Font.PLAIN, 12)); lblTitle.setHorizontalAlignment(SwingConstants.CENTER); lblTitle.setText("聊天登录界面"); lblTitle.setBounds(new Rectangle(50, 13, 233, 30)); lblHost.setFont(new java.awt.Font("Dialog", Font.PLAIN, 12)); lblHost.setText("请输入主机名:"); lblHost.setBounds(new Rectangle(29, 60, 93, 21)); txtName.setText("localhost"); txtName.setBounds(new Rectangle(133, 57, 173, 27)); lblNick.setFont(new java.awt.Font("Dialog", Font.PLAIN, 12)); lblNick.setText("昵 称:"); lblNick.setBounds(new Rectangle(29, 103, 90, 24)); txtNick.setText(""); txtNick.setBounds(new Rectangle(133, 103, 173, 27)); btnLogin.setBounds(new Rectangle(134, 145, 67, 30)); btnLogin.setFont(new java.awt.Font("Dialog", Font.PLAIN, 12)); btnLogin.setText("登录"); btnLogin.addActionListener(new LoginJFrame_btnLogin_actionAdapter(this)); btnClose.setBounds(new Rectangle(237, 144, 67, 30)); btnClose.setFont(new java.awt.Font("Dialog", Font.PLAIN, 12)); btnClose.setText("关闭"); btnClose.addActionListener(new LoginJFrame_btnClose_actionAdapter(this)); contentPane.add(lblTitle); contentPane.add(lblHost); contentPane.add(txtName); contentPane.add(lblNick); contentPane.add(txtNick); contentPane.add(btnLogin); contentPane.add(btnClose); } public void btnClose_actionPerformed(ActionEvent e) { System.exit(0); } public void btnLogin_actionPerformed(ActionEvent e) { String hostName=txtName.getText().trim(); String nickName=txtNick.getText().trim(); if(hostName.equals("")||nickName.equals("")) { JOptionPane.showMessageDialog(null,"主机名和昵称必须输入!","错误",JOptionPane.ERROR_MESSAGE); }else { try { InetAddress addr = InetAddress.getByName(hostName); Socket s=new Socket(addr,8888); ChatFrame cf=new ChatFrame(s,nickName); cf.setSize(490,450); cf.setResizable(false); cf.setLocationRelativeTo(cf); cf.setVisible(true); this.dispose(); } catch (Exception ex) { JOptionPane.showMessageDialog(null,"主机不存在!请检查您的输入!"); } } } } class LoginJFrame_btnLogin_actionAdapter implements ActionListener { private LoginJFrame adaptee; LoginJFrame_btnLogin_actionAdapter(LoginJFrame adaptee) { this.adaptee = adaptee; } public void actionPerformed(ActionEvent e) { adaptee.btnLogin_actionPerformed(e); } } class LoginJFrame_btnClose_actionAdapter implements ActionListener { private LoginJFrame adaptee; LoginJFrame_btnClose_actionAdapter(LoginJFrame adaptee) { this.adaptee = adaptee; } public void actionPerformed(ActionEvent e) { adaptee.btnClose_actionPerformed(e); } }

1690356080 LV38
2024年4月23日
CL200228 LV4
2023年5月4日
oyonogul LV1
2022年11月21日
youwuzuichen LV11
2022年9月8日
huevnn LV5
2022年6月16日
bearloadprogress LV7
2022年5月12日
liys1234 LV9
2022年4月22日
装了磁铁的果冻 LV1
2022年1月7日
9843637 LV9
2021年12月14日
tttyyyytt LV2
2021年6月22日

微信网友_7298640909209600 LV2
2024年12月22日
qwertasdfgkwuejwjwjw LV1
2024年6月27日
周鸣郝 LV2
2024年5月26日
1690356080 LV38
2024年4月23日
krispeng LV14
2024年4月15日
lalalla159 LV3
2023年12月2日
Sutnuf
2023年11月27日
暂无贡献等级
13161895 LV1
2023年7月4日
2017143155 LV12
2023年6月24日
链路预测
2023年6月19日
暂无贡献等级