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

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

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

#! /usr/bin/env python
# -*- coding: utf-8 -*-
from win32gui import *
titles = set()
def foo(hwnd,mouse):
#去掉下面这句就所有都输出了,但是我不需要那么多
if iswindow(hwnd) and iswindowenabled(hwnd) and iswindowvisible(hwnd):
titles.add(getwindowtext(hwnd))
enumwindows(foo, 0)
lt = [t for t in titles if t]
lt.sort()
for t in lt:
print t

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

print(t.decode(‘gb2312’))

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

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

Posted in 未分类

发表评论