访问剪贴板 Windows (7) 64 位
有没有办法在 Python 中访问(设置、读取等)Windows 7 64 位上的剪贴板?我见过 PyWin32,但据我所知,它只是 32 位。
Is there a way to access (set, read etc.) the clipboard on Windows 7 64-bit in Python? I have seen PyWin32 but as far as I could see that was only 32-bit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
下载
amd64
版本的pywin32
以获得 64 位支持,查看此处
。Download the
amd64
version ofpywin32
for 64bit support, have a look athere
.所有程序之间只共享一个剪贴板,无论它们是 32 位还是 64 位。换句话说,您可以在 64 位 Windows 上使用与 32 位 Windows 上相同的剪贴板代码。
编辑:我刚刚读过伊斯梅尔的回答,我想知道这是否真的是OP正在努力解决的问题。我上面的陈述仍然正确,但我可能误解了这个问题。
There only is one clipboard that is shared between all programs, whether they are 32 or 64 bit. In other words you can just use the same clipboard code on 64 bit Windows as you do on 32 bit.
EDIT: I've just read İsmail's answer and I wonder if that is in fact what the OP is struggling with. My statement above is still true, but I may have misinterpreted the question.
pyperclip.py 模块具有对简单文本复制/粘贴的跨平台支持。
http://coffeeghost.net/ 2010/10/09/pyperclip-a-cross-platform-clipboard-module-for-python/
The pyperclip.py module has cross-platform support for simple text copying/pasting.
http://coffeeghost.net/2010/10/09/pyperclip-a-cross-platform-clipboard-module-for-python/
我见过的最简单的方法在这篇文章中演示: 如何使用 Python 将字符串复制到 Windows 上的剪贴板?
它使用 Tkinter,它位于 python 标准库中。
The easiest method I've seen is demonstrated in this post: How do I copy a string to the clipboard on Windows using Python?
It uses Tkinter, which is in the python standard library.