Python遍历windows的所有窗口并输出窗口标题的代码

2022-05-03 00:00:00 遍历 窗口 输出

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

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输出,这样输出的窗口标题就是正常的中文

相关文章