首页 技术 正文
技术 2022年11月17日
0 收藏 717 点赞 4,727 浏览 3230 个字

JAVA第二次作业展示与学习心得 在这一次作业中,我学习了复选框,密码框两种新的组件,并通过一个邮箱登录界面将两种组件运用了起来。具体的使用方法和其他得组件并没有什么大的不同。 另外我通过查阅资料使用了一种新的布局方式——网格包布局.网格包布局管理是最复杂和灵活的布局管理,与网格布局管理器不同的是,网格包布局管理器允许容器中各个组件的大小各不相同,还允许组件跨越多个网格,也允许组件之间相互部分重叠。网格包布局理解为网格单元布局更合理,因为一个容器被划分为若干个网格单元,而每个组件放置在一个或多个网格单元中。要注意的是,网格包布局不能指定一个容器的网格单元的大小其网格单元的划分是通过weightx和weighty参数来设置的,但也不是直接指定其网格单元的大小。当把一个组件放置在网格单元中时,组件所占据的位置和大小是由一组与他们相关联的约束来决定的。这些约束是由GridBagConstraints类型的对象来设置的。 程序源代码: import java.awt.; import javax.swing.; import java.awt.Color; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; public class emailx extends JFrame { private Checkbox rem_pwd; private Checkbox not_show; private Container c; private ActionEvent e; private ActionListener myActionLis; private JButton loginBut; private JButton exitBut; private JButton register; private JLabel label;// 标签 private JLabel label2; private JLabel no_use; private JPanel rem_not_show; private JPanel log_cancel; private JPasswordField password;// 密码框 private JTextField usernametext;// 文本框 // 按钮 public emailx() { rem_not_show = new JPanel();//用于装记住密码与隐身的两个对象 log_cancel = new JPanel();//用于装登陆和取消的两个对象 rem_pwd = new Checkbox(“记住密码”); not_show = new Checkbox(“隐身登陆”); /网格包布局是这种,可以达到效果/ GridBagLayout gblayout = new GridBagLayout(); GridBagConstraints constraints = new GridBagConstraints(); setTitle(“邮箱登陆界面”); // 窗口的主容器 final Container c = getContentPane(); c.setLayout(gblayout); // 让容器采用空布局 c.setBackground(Color.BLUE); constraints.weightx = 0; constraints.weighty = 0; constraints.gridx = 1; label = new JLabel(“账号:”,JLabel.CENTER); gblayout.setConstraints(label, constraints); c.add(label); constraints.gridx = 2; usernametext = new JTextField(10); gblayout.setConstraints(usernametext, constraints); c.add(usernametext); constraints.gridx = 3; register = new JButton(“注册”); gblayout.setConstraints(register, constraints); c.add(register); constraints.gridx = 1; constraints.gridy = 2; label2 = new JLabel(“密码:”,JLabel.CENTER); gblayout.setConstraints(label2, constraints); c.add(label2); constraints.gridx = 2; password = new JPasswordField(10); gblayout.setConstraints(password, constraints); c.add(password); constraints.gridx = 2; constraints.gridy = 3; rem_not_show.add(rem_pwd); rem_not_show.add(not_show); rem_not_show.setBackground(c.getBackground()); gblayout.setConstraints(rem_not_show, constraints); c.add(rem_not_show); exitBut = new JButton(); exitBut.setText(“删除”);// 设置按钮值 loginBut = new JButton(“进入”); // 实例化组件 log_cancel.add(loginBut); log_cancel.add(exitBut); constraints.gridx = 2; constraints.gridy = 4; gblayout.setConstraints(log_cancel, constraints); log_cancel.setBackground(c.getBackground()); c.add(log_cancel); loginBut.setToolTipText(“进入请点击该按钮!”); // 给按钮注册监听器 final myActionLis lis = new myActionLis(); loginBut.addActionListener(lis); setSize(400, 300); setVisible(true); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); } public static void main(final String[] args) { new emailx(); } class myActionLis implements ActionListener { public void actionPerformed(final ActionEvent e) { // 获取文本框或者密码框的值(内容) final String name = usernametext.getText(); final String pwd = password.getText(); if (name.equals(“”) || pwd.equals(“”)) { // 弹出提示框 JOptionPane.showMessageDialog(null, “账号或者密码不能为空!”); } else { if (name.equals(“123456789@qq.com”) && pwd.equals(“123456789”)) { JOptionPane.showMessageDialog(null, “恭喜您!登录成功!”); } else { JOptionPane.showMessageDialog(null, “账号或者密码错误!请重新输入!”); } } } }} 程序运行效果:

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,088
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,564
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,412
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,185
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,822
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,905