java中关闭窗口的方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中关闭窗口的方法相关的知识,希望对你有一定的参考价值。

怎样将第一个窗口关上并打开下一个窗口
***********************************
package chessGUI;

import javax.swing.*;

public class Denglu

public static void main (String[] args)
JFrame frame=new JFrame("黑白棋登录");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(new DLpanel());
frame.setSize(300,200);
frame.setVisible(true);




*************************************
package chessGUI;

import java.awt.*;

import javax.swing.*;

import java.awt.event.*;

public class DLpanel extends JPanel

private JLabel lb1,lb2;
private JPanel jp1,jp2,jp3;
private JButton jb1,jb2;
private JTextField jt1,jt2;

public DLpanel()


setLayout(new BorderLayout());
lb1=new JLabel("用户名:");
lb2=new JLabel("密码:");
jt1=new JTextField(10);
jt2=new JTextField(10);
jb1=new JButton("登录");
jb1.addActionListener(new Denglulistener());
jb2=new JButton("注册");

jp1=new JPanel();
jp2=new JPanel();
jp3=new JPanel();
jp1.add(lb1);
jp1.add(jt1);
jp2.add(lb2);
jp2.add(jt2);
jp3.add(jb1);
jp3.add(jb2);
add(jp1,BorderLayout.NORTH);
add(jp2,BorderLayout.CENTER);
add(jp3,BorderLayout.SOUTH);


private class Denglulistener implements ActionListener

public void actionPerformed(ActionEvent e )
if (e.getActionCommand().equals("登录"));

frame.dispose();




1 package applicationGraphicsInOut;
2 import java.awt.*;
3 import java.awt.event.*;
4 public class ApplicationGraphicsInOut
5 public static void main(String args[])
6
7 new FrameInOut();
8
9
10
11 class FrameInOut extends Frame implements ActionListener
12
13 Label prompt;
14 TextField input,output;
15 FrameInOut()
16
17 super("图形界面的Java Application程序");
18 prompt=new Label("请输入您的名字");
19 input=new TextField(6);
20 output=new TextField(20);
21 setLayout(new FlowLayout());
22 add(prompt);
23 add(input);
24 add(output);
25 input.addActionListener(this);
26 setSize(300,200);
27 setVisible(true);
28
29 public void actionPerformed(ActionEvent e)
30
31 output.setText(input.getText()+",欢迎你");
32
33

该程序在Eclipse下运行通过,但是就是不能关不掉!

什么原因呢?

其中有以下几种解决方法:

1:

把main函数改为如下

1 public static void main(String args[])
2
3 Frame fr=new FrameInOut();
4 fr.addWindowListener(new java.awt.event.WindowAdapter()
5
6 public void windowClosing(java.awt.event.WindowEvent e)
7
8 System.exit(0);
9
10 );
11
12

这种方法我有点不解,addWindowListener()括号里是怎么回事,我有点纳闷,我还没见过这样的形式,不过我猜可能是实现了java.awt.event.WindowAdapter()类里面的一个抽象方法windowClosing(),但是我真没有见过这种格式,求解释。

2:

对WINDOWS_CLOSING事件做出响应,每个窗口都有3个控制图标,其中最小化和最大化操作Frame可自动完成,而关闭窗口的操作不能通过单击关闭图标实现,需要程序专门书写有关的代码,其实这种方法与上一种一样,则不过换了一种格式,一种初学者更明白易懂的格式。

在FrameInOut()构造函数里面添加监听函数,添加监听函数之后构造函数如下:

FrameInOut()

super("图形界面的Java Application程序");
prompt=new Label("请输入您的名字");
input=new TextField(6);
output=new TextField(20);
setLayout(new FlowLayout());
addWindowListener(new HandleWin()); //添加监听函数,引发WindowEvent事件
add(prompt);
add(input);
add(output);
input.addActionListener(this);
setSize(300,200);
setVisible(true);


其中HandleWin()为内部类,主要实现WindowListener借口,添加监听之后会引发WindowEvent类代表的所以七中事件,具体情况如下:

(1)WINDOW_ACTIVATED:代表窗口被激活(在屏幕的最前方待命)。

(2)WINDOW_DEACTIVATED:代表窗口失活(其他窗口被激活后原活动窗口失活)。

(3)WINDOW_OPENED:代表窗口被打开。

(4)WINDOW_CLOSED:代表窗口被关闭(关闭窗口后发生)。

(5)WINDOW_CLOSING:代表窗口正在被关闭(指关闭前。如单击窗口标题栏上的关闭按钮时)。

(6)WINDOW_ICONIFIED:代表使窗口最小化成图标。

(7)WINDOW_DEICONIFIED:代表使窗口从图标恢复

在WindowEvent类的主要方法有:

public window getWindow();

此方法返回引发当前WindowEvent事件的具体窗口对象,与getSource()方法返回的是相同的事件引用。

HandleWin定义如下:

class HandleWin extends WindowAdapter

public void windowClosing(WindowEvent e)

(e.getWindow()).dispose();
System.exit(0);



HandleWin是窗口事件的裁剪类WindowAdapter的子类,重载了WindowClosing()方法。

当然也可以这样写HandleWin

1 class HandleWin implements WindowListener
2
3 public void windowClosing(WindowEvent e)
4
5 (e.getWindow()).dispose();
6 System.exit(0);
7
8
9 @Override
10 public void windowActivated(WindowEvent arg0)
11 // TODO Auto-generated method stub
12
13
14
15 @Override
16 public void windowClosed(WindowEvent arg0)
17 // TODO Auto-generated method stub
18
19
20
21 @Override
22 public void windowDeactivated(WindowEvent arg0)
23 // TODO Auto-generated method stub
24
25
26
27 @Override
28 public void windowDeiconified(WindowEvent arg0)
29 // TODO Auto-generated method stub
30
31
32
33 @Override
34 public void windowIconified(WindowEvent arg0)
35 // TODO Auto-generated method stub
36
37
38
39 @Override
40 public void windowOpened(WindowEvent arg0)
41 // TODO Auto-generated method stub
42
43
44
参考技术A 关闭一个窗口 窗口对象.dispose();方法
关闭整个系统 System.exit(int ); 调用System.exit方法,不论参数传什么值,都会关闭整个进程。参数0表示正常关闭整个进程,参数值为其他任意整数,表示不正常关闭系统,
参考技术B 只能说你的思路有问题,如果是想在关掉第一个窗口之后,打开第二个窗口,那么,你在第一个窗口上定义一个按钮就行了,按这个按钮进行关闭窗口,按钮是可以添加事件的,随你打开多少个窗口。。
你可以让标题栏不显示。。

你想点 X 关闭窗口,并且打开第二个窗口,第二个窗口关闭,又打开新的窗口,那就永远关不掉了。。
参考技术C frame.setVisible(false)本回答被提问者采纳 参考技术D application.exit();

如何使用 Java 在 Selenium WebDriver 中关闭子浏览器窗口

【中文标题】如何使用 Java 在 Selenium WebDriver 中关闭子浏览器窗口【英文标题】:How to close child browser window in Selenium WebDriver using Java 【发布时间】:2013-05-26 04:48:10 【问题描述】:

切换到新窗口并完成任务后,我想关闭那个新窗口并切换到旧窗口,

所以我在这里写了类似代码:

// Perform the click operation that opens new window

String winHandleBefore = driver.getWindowHandle();

    // Switch to new window opened

    for (String winHandle : driver.getWindowHandles()) 
        driver.switchTo().window(winHandle);
    

    // Perform the actions on new window


    driver.findElement(By.id("edit-name")).clear();
    WebElement userName = driver.findElement(By.id("edit-name"));
    userName.clear();
              try
    
        driver.quit();
    

    catch(Exception e)
    
        e.printStackTrace();
        System.out.println("not close");
                

driver.switchTo().window(winHandleBefore);// Again I want to start code this old window

上面我写了代码driver.quit()driver.close()。但我收到错误。谁能帮帮我...?

org.openqa.selenium.remote.SessionNotFoundException: 调用 quit() 后无法使用 FirefoxDriver。

【问题讨论】:

【参考方案1】:

我也试过了

1)driver.close(); 2)driver.quit();

显然,这些方法没有按预期工作!(不是说它不起作用)我什至尝试过将驱动程序类设为单例,但它并没有帮助我并行运行测试用例。所以它是也不是最佳解决方案。最后,我想出了一个单独的类来运行一个 bat 文件。该 bat 文件包含对所有 chrome 驱动程序进程和它的所有子进程进行分组的命令。并且来自我的 java 类使用运行时执行它。

运行bat文件的类文件

public class KillChromeDrivers 

    public static void main(String args[]) 


        try 

            Runtime.getRuntime().exec("cmd /c start E:\\Work_Folder\\SelTools\\KillDrivers.bat");
            //Runtime.getRuntime().exec()
         catch (Exception ex) 



        
    


您必须放入 [ .bat ] 文件的命令

taskkill /IM "chromedriver.exe" /T /F

【讨论】:

【参考方案2】:

关闭单个浏览器窗口:

driver.close();

关闭所有(父+子)浏览器窗口并结束整个会话:

driver.quit();

【讨论】:

【参考方案3】:
public class First 
    public static void main(String[] args) 
        System.out.println("Welcome to Selenium");
        WebDriver wd= new FirefoxDriver();
        wd.manage().window().maximize();
        wd.get("http://opensource.demo.orangehrmlive.com/");
        wd.findElement(By.id("txtUsername")).sendKeys("Admin");
        wd.findElement(By.id("txtPassword")).sendKeys("admin");
        wd.findElement(By.id("btnLogin")).submit();
        **wd.quit(); //--> this helps to close the web window automatically** 
        System.out.println("Tested Sucessfully ");
    

【讨论】:

【参考方案4】:

关闭单个子窗口有两种方式:

方式一:

driver.close();

方式 2: 使用键盘上的 Ctrl+w 键:

driver.findElement(By.cssSelector("body")).sendKeys(Keys.CONTROL + "w");

【讨论】:

driver.close();适用于新窗口。 driver.findElement(By.cssSelector("body")).sendKeys(Keys.CONTROL + "w");适用于新窗口和新标签。【参考方案5】:
//store instance of main window first using below code
String winHandleBefore = driver.getWindowHandle(); 

执行打开新窗口的点击操作

//Switch to new window opened
for (String winHandle : driver.getWindowHandles()) 
    driver.switchTo().window(winHandle);


// Perform the actions on new window
driver.close(); //this will close new opened window

//switch back to main window using this code
driver.switchTo().window(winHandleBefore);

// perform operation then close and quit
driver.close();
driver.quit();

【讨论】:

【参考方案6】:

在某些情况下,从 getWindowHandle() 或 getWindowHandles() 获得有效的窗口句柄后,窗口会自行关闭。

甚至有可能在 getWindowHandles() 运行时窗口会自行关闭,除非您创建一些临界区类型的代码(即在运行测试代码时冻结浏览器,直到所有窗口管理操作完成)

检查当前驱动程序有效性的一种更快的方法是检查 sessionId,它被 driver.close() 或窗口关闭本身设为 null。

需要将WebDriver强制转换为远程驱动接口(RemoteWebDriver)才能获取sessionId,如下:

if (null == ((RemoteWebDriver)driver).sessionId) 
    // current window is closed, switch to another or quit
 else 
    // current window is open, send commands or close

还要注意关闭最后一个窗口等价于quit()。

【讨论】:

【参考方案7】:

您用于将控件切换到弹出窗口的逻辑是错误的

 for (String winHandle : driver.getWindowHandles()) 
        driver.switchTo().window(winHandle);
    

上述逻辑如何将控件切换到新窗口?


使用以下逻辑将控件切换到新窗口

// get all the window handles before the popup window appears
 Set beforePopup = driver.getWindowHandles();

// click the link which creates the popup window
driver.findElement(by).click();

// get all the window handles after the popup window appears
Set afterPopup = driver.getWindowHandles();

// remove all the handles from before the popup window appears
afterPopup.removeAll(beforePopup);

// there should be only one window handle left
if(afterPopup.size() == 1) 
          driver.switchTo().window((String)afterPopup.toArray()[0]);
 

// Perform the actions on new window

  **`//Close the new window`** 
    driver.close();

//perform remain operations in main window

   //close entire webDriver session
    driver.quit();

【讨论】:

以上是关于java中关闭窗口的方法的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 Java 在 Selenium WebDriver 中关闭子浏览器窗口

在 PyQt 中关闭窗口后如何检索属性值?

如何阻止用户在 Javascript 中关闭窗口?

目标窗口在硒中关闭

在tkinter中关闭窗口之前执行某个命令[重复]

winform中关闭退出和打开新窗口的几种方式