import java.awt.*;
import javax.swing.*;
public class DAO extends JFrame {
public DAO (){
Image image;
setTitle("登录");//窗口标题
setLayout(null);//设置为绝对布局
setBounds(0,0,400,300);//设置窗口位置和大小
setLocationRelativeTo(null);//设置窗口居中
Container c = getContentPane();//添加容器
JButton j1 = new JButton("登录");//添加按钮
JButton j2 = new JButton("退出");
JTextField j3 = new JTextField();
JPasswordField j4 = new JPasswordField();
JLabel j5 = new JLabel("账号:");
JLabel j6 = new JLabel("密码:");
j1.setBounds(100, 200, 80, 30);//设置按钮的大小和位置 登录按钮
j2.setBounds(250, 200, 80, 30);//退出按钮
j3.setBounds(140, 60, 150, 30);//账号框
j4.setBounds(140, 120, 150, 30);//密码框
j5.setBounds(100, 60, 100, 30);//账号字符
j6.setBounds(100, 120, 100, 30);//密码字符
c.add(j1);c.add(j2);c.add(j3);c.add(j4);c.add(j5);c.add(j6);//将按钮添加到容器
setVisible(true);//设置窗口为可见
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);//设置窗口的关闭方式
}
//图片地址H:\\p.jpg
public static void main(String[] args){
new DAO();
}
}