Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用名为 win32clipboard 的 Python 模块从剪贴板中检索文本,如此处所述。但是 Windows 7 不允许在1418 - ERROR_CLIPBOARD_NOT_OPEN我使用时访问带有错误的剪贴板:
1418 - ERROR_CLIPBOARD_NOT_OPEN
data = win32clipboard.GetClipboardData()
我怎样才能打败系统并获取数据?
确保您没有打开剪贴板两次。您必须关闭它然后重新打开它。
开闭操作不能嵌套。