简体   繁体   English

如何关闭jframe中的当前窗口?

[英]How to close current window in jframe?

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

import javax.swing.JFrame;

import class_program.NextPage;

class Login extends JFrame implements ActionListener
{
 JButton SUBMIT;
 JPanel panel;
 JLabel label1,label2;
 final JTextField  text1,text2;
  Login()
  {
    label1 = new JLabel();
    label1.setText("Username:");
    text1 = new JTextField(15);

    label2 = new JLabel();
    label2.setText("Password:");
      text2 = new JPasswordField(15);

    SUBMIT=new JButton("SUBMIT");

    panel=new JPanel(new GridLayout(3,1));
    panel.add(label1);
    panel.add(text1);
    panel.add(label2);
    panel.add(text2);
    panel.add(SUBMIT);
    add(panel,BorderLayout.CENTER);
    SUBMIT.addActionListener(this);
    setTitle("LOGIN FORM");
  }
   public void actionPerformed(ActionEvent ae)
  {
    String value1=text1.getText();
    String value2=text2.getText();
        if (value1.equals("jomy") && value2.equals("jomy")) {
    NextPage page=new NextPage();
    page.setVisible(true);
    JLabel label = new JLabel("Welcome:"+value1);
    page.getContentPane().add(label);
  }
    else{
      System.out.println("enter the valid username and password");
      JOptionPane.showMessageDialog(this,"Incorrect login or password",
            "Error",JOptionPane.ERROR_MESSAGE);
  }
}
}
 class jframes
{
  public static void main(String arg[])
  {
    try
    {
    Login frame=new Login();
    frame.setSize(300,100);
    frame.setVisible(true);
    }
  catch(Exception e)
    {JOptionPane.showMessageDialog(null, e.getMessage());}
  }
}

this is used to check password and username that is correct going to next page这用于检查密码和用户名是否正确进入下一页

package class_program;

import javax.swing.JFrame;

 public class NextPage extends JFrame
 {
   public NextPage()
    {
      setDefaultCloseOperation(javax.swing.
           WindowConstants.DISPOSE_ON_CLOSE);
      setTitle("");
        setSize(400, 200);
       }
}

this is program for next page.that the same time the old password and user name that window is not closed.can u helping for closing that window?这是下一页的程序。同时那个窗口没有关闭的旧密码和用户名。你能帮忙关闭那个窗口吗?

just use the只需使用

dispose();处置(); inside actionPerformed内部动作执行

public void actionPerformed(ActionEvent ae)
  {
    String value1=text1.getText();
    String value2=text2.getText();
    if (value1.equals("jomy") && value2.equals("jomy")) {

     dispose(); // this will close current login box window

     //this will open a nextpage window.
     NextPage page=new NextPage();
     page.setVisible(true);
     JLabel label = new JLabel("Welcome:"+value1);
     page.getContentPane().add(label);
    }
    else{
      System.out.println("enter the valid username and password");
      JOptionPane.showMessageDialog(this,"Incorrect login or password",
            "Error",JOptionPane.ERROR_MESSAGE);
  }

1) Your Login class doesnt define setDefaultCloseOperation(DO_SOMETHING_ON_CLOSE). 1) 您的登录类没有定义 setDefaultCloseOperation(DO_SOMETHING_ON_CLOSE)。 2) If you put setVisible(false); 2) 如果你把 setVisible(false); before

nextPage page=new NextPage();
page.setVisible(true);

together with defining default close operation on the first frame it will work.连同在第一帧上定义默认关闭操作一起工作。

In your new window method (newFrame) set this:在您的新窗口方法(newFrame)中设置:

newFrame = new JFrame();
newFrame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);

You close a JFrame by calling setVisible(false) on it just like you open it by calling setVisible(true)您可以通过调用setVisible(false)来关闭 JFrame,就像通过调用setVisible(true)打开它一样

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM