Python实现遍历windows所有窗口并输出窗口标题的方法

时间:2022-08-28 17:28:36

本文实例讲述了Python实现遍历windows所有窗口并输出窗口标题的方法。分享给大家供大家参考。具体如下:

这段代码可以让Python遍历当前Windows下所有运行程序的窗口,并获得运行窗口的标题输出

  1. #! /usr/bin/env python 
  2. # -*- coding: utf-8 -*- 
  3. from win32gui import * 
  4. titles = set() 
  5. def foo(hwnd,mouse): 
  6.  #去掉下面这句就所有都输出了,但是我不需要那么多 
  7.  if IsWindow(hwnd) and IsWindowEnabled(hwnd) and IsWindowVisible(hwnd): 
  8.   titles.add(GetWindowText(hwnd)) 
  9. EnumWindows(foo, 0) 
  10. lt = [t for t in titles if t] 
  11. lt.sort() 
  12. for t in lt: 
  13.  print t 

若要输出中文,可以将最后一句改成:

  1. print(t.decode('GB2312')) 

将GB2312转码成Unicode输出,这样输出的窗口标题就是正常的中文。

希望本文所述对大家的Python程序设计有所帮助。