1. 程式人生 > >Python3中使用windows剪下板

Python3中使用windows剪下板

python3 在使用網上找到的一些使用剪下板的片段時發現存在寫入剪下板後亂碼的情況, 研究後發現python3不能使用SetClipboardData方法, 要使用SetClipboardText

import sys  
import os.path  
import win32clipboard as w    
import win32con  
import win32api  
def getText():#讀取剪下板  
    w.OpenClipboard()  
    d = w.GetClipboardData(win32con.CF_TEXT)  
    w.CloseClipboard()  
    return d  
def setText(aString):#寫入剪下板  
    w.OpenClipboard()  
    w.EmptyClipboard()  
    w.SetClipboardText(aString)  
    w.CloseClipboard()  
if __name__=='__main__':  
    a="你好"  
    setText(a)#將“你好”寫入剪下板  
    #自動貼上剪下板中的內容  
    win32api.keybd_event(17,0,0,0)  #ctrl的鍵位碼是17  
    win32api.keybd_event(86,0,0,0)#v的鍵位碼是86  
    win32api.keybd_event(86,0,win32con.KEYEVENTF_KEYUP,0) #釋放按鍵  
    win32api.keybd_event(17,0,win32con.KEYEVENTF_KEYUP,0)  
    win32api.keybd_event(13,0,0,0)#Enter的鍵位碼是13  
    win32api.keybd_event(13,0,win32con.KEYEVENTF_KEYUP,0)