Mirosoft Office自动化问题
生活随笔
收集整理的這篇文章主要介紹了
Mirosoft Office自动化问题
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
我們習(xí)慣于將Jenkins slave安裝成Windows Service,而微軟的Office自動化部分,不支持以Windows Service的方式運行。以下的代碼,如果在Jenkins Slave ( As windows service) 中運行,將導(dǎo)致Word打開的時候出錯。( doc = word.Documents.Open(in_file) )
import sys import os import time import win32com.clientwdFormatPDF = 17in_file = r'C:\Users\Administrator\Desktop\Build\ter\forExample.doc'word = win32com.client.Dispatch('Word.Application')word.Visible = True word.ScreenUpdating = Falsein_file = os.path.join(docDir, doc['docName']) out_file = in_file.split('.')[0] + '.pdf'doc = word.Documents.Open(in_file) time.sleep(15)doc.Activate() doc.AcceptAllRevisions() doc.Revisions.AcceptAll() if (doc.Comments.Count != 0):doc.DeleteAllComments()doc.SaveAs(out_file, FileFormat=wdFormatPDF) doc.Close()word.Quit()
解決的辦法是:
1. Create a desktop folder for the system profile, as:
C:\Windows\System32\config\systemprofile\Desktopand, if running on a 64-bit machine, create another one, as:
C:\Windows\SysWOW64\config\systemprofile\Desktop2. The folder(s) need write permission for whatever user is "driving" Office.
Note that, on 64-bit Windows, you need both folders, not just the WOW64 one
?
?
轉(zhuǎn)載于:https://www.cnblogs.com/LegendOfBFS/p/3513439.html
總結(jié)
以上是生活随笔為你收集整理的Mirosoft Office自动化问题的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: SQLite主键自增需要设置为integ
- 下一篇: 设计模式-拦截器模式