- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个在 Windows Server 2008 上运行的 Python 脚本。它打开一个电子表格并向电子表格添加一个筛选行,关闭它然后将其压缩。主电子表格是使用 xlwt 创建的。我只使用 Pywin32,因为用户想要添加一个筛选行。
当手动执行时(即直接通过 Windows 资源管理器或命令行)它有效。但是,当通过 Task Schduler 手动触发脚本或让它在所需时间触发时,它不起作用。
“运行身份”用户是管理员。我已经检查以确保它以最高权限运行。
我通过将输出管道输出到日志文件来捕获错误消息。回溯显示:
File "C:\www\..\main\management\commands\excel_writer.py", line 183, in add_filter_control
xl.Workbooks.Open(file_path)
File "<COMObject <unknown>>", line 8, in Open
pywintypes.com_error: (-2147352567, 'Exception occurred.', (0, u'Microsoft Office Excel', u'Die Open-Methode des Workbooks-Objektes konnte nicht ausgef\xfchrt werden.', u'C:\\Program Files\\Microsoft Office\\OFFICE11\\1031\\xlmain11.chm', 0, -2146827284), None)
好的...这是德文的,但基本上是说“无法执行工作簿打开方法”。
但是,我不知道为什么。有没有人对如何找出原因有任何提示?
干杯
行政法官
这里是一些代码和设置:
电子表格创建代码
...
w = xlwt.Workbook('UTF-8')
worksheets = {}
data_formatting_dict = construct_data_formatting()
for sheetref, sheetname, datasource, dataformat_ref in sheetlist:
worksheets[sheetref] = w.add_sheet(sheetname)
fetch_row_heights(sheetref, dataformat_ref)
xls_set_columnwidth(sheetref, dataformat_ref)
xls_set_main_titles(sheetref, sheetname, dataformat_ref)
xls_set_titles(sheetref, sheetname, dataformat_ref)
xls_insert_filter_row(sheetref, dataformat_ref)
xls_freeze_panes(sheetref, dataformat_ref)
xls_write_lines(sheetref,dataformat_ref,datasource,pre_title_rows+title_rows+post_title_rows)
filename = fileroot + ".xls"
archive = fileroot + ".zip"
filepath = os.getcwd() + "\\" + filename
w.save(filepath)
add_filter_control(filepath) << This is where the filter code is called.
ziparchive(filename, archive)
full_archive_ref = save_to_folder + archive
shutil.copy(archive, full_archive_ref)
os.remove(filename)
os.remove(archive)
...
add_filter_control
def add_filter_control(file_path):
try:
from win32com.client import Dispatch
except:
return
xl = Dispatch("Excel.Application")
xl.Workbooks.Open(file_path)
for id, sheetname, source, formatref in sheetlist:
cellref = format_params[formatref]['filter_range']
if cellref is not None:
xl.ActiveWorkbook.Worksheets(sheetname).Range(cellref).AutoFilter(1)
xl.ActiveWorkbook.Close(SaveChanges=1) # 1 is True, 0 is False
xl.quit()
任务计划程序设置
<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Date>2010-07-23T21:25:09.4036437</Date>
<Author>WIN-1CW6Q4GAAAM\Administrator</Author>
<Description>Refreshes the temp tables in the database and generates the summary report spreadsheet.</Description>
</RegistrationInfo>
<Triggers>
<CalendarTrigger>
<StartBoundary>2010-07-23T05:00:00</StartBoundary>
<ExecutionTimeLimit>PT1H</ExecutionTimeLimit>
<Enabled>true</Enabled>
<ScheduleByDay>
<DaysInterval>1</DaysInterval>
</ScheduleByDay>
</CalendarTrigger>
</Triggers>
<Principals>
<Principal id="Author">
<UserId>WIN-1CW6Q4GAAAM\Administrator</UserId>
<LogonType>Password</LogonType>
<RunLevel>HighestAvailable</RunLevel>
</Principal>
</Principals>
<Settings>
<IdleSettings>
<Duration>PT10M</Duration>
<WaitTimeout>PT1H</WaitTimeout>
<StopOnIdleEnd>true</StopOnIdleEnd>
<RestartOnIdle>false</RestartOnIdle>
</IdleSettings>
<MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
<DisallowStartIfOnBatteries>true</DisallowStartIfOnBatteries>
<StopIfGoingOnBatteries>true</StopIfGoingOnBatteries>
<AllowHardTerminate>true</AllowHardTerminate>
<StartWhenAvailable>true</StartWhenAvailable>
<RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
<AllowStartOnDemand>true</AllowStartOnDemand>
<Enabled>true</Enabled>
<Hidden>false</Hidden>
<RunOnlyIfIdle>false</RunOnlyIfIdle>
<WakeToRun>false</WakeToRun>
<ExecutionTimeLimit>PT1H</ExecutionTimeLimit>
<Priority>7</Priority>
</Settings>
<Actions Context="Author">
<Exec>
<Command>run_reports.bat</Command>
<WorkingDirectory>C:\www\my_site\mysite\</WorkingDirectory>
</Exec>
</Actions>
</Task>
最佳答案
经过几天的搜索,我找到了以下解决方案(完整线程可以在 http://social.msdn.microsoft.com/Forums/en/innovateonoffice/thread/b81a3c4e-62db-488b-af06-44421818ef91 找到)
在 systemprofile 文件夹中似乎需要 Desktop 文件夹才能通过 Excel 打开文件。您需要创建以下文件夹之一:
Windows 2008 服务器 x64
C:\Windows\SysWOW64\config\systemprofile\桌面
Windows 2008 服务器 x86
C:\Windows\System32\config\systemprofile\桌面
我不确定为什么会这样,但它对我有用。我希望这对处于相同情况的人有所帮助,并感谢那些试图提供帮助的人。
关于python - 任务计划程序不会运行 python 脚本 (pywin32) 来打开 Excel。如何从 Pywin32 获取更多信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12571985/
我有几个系统使用 docker-compose 并且没有问题。 但是,我在这里有一个“向下”根本不做任何事情的地方。 'up'虽然完美。这是在 MacOS 上。 该项目的昵称是“ Storm ”,脚本
解释起来确实很奇怪,所以就这样...... 我正在从 phpmyadmin 获取包含未转义单引号的数据。我正在尝试转换'至'通过使用Content-Type: text/html;在 php
伙计们?在这里需要一些帮助。我使用委托(delegate)协议(protocol)将一些字符串从“第二个 View Controller ”传回给它的前一个。 我的数组附加了我在委托(delegate
我有以下 eval() 东西: c = Customer() eval("c.name = row.value('customer', '{c}')".format(c=column_name), {
我写了这个测试类: @ContextConfiguration(locations = { "classpath:/test/BeanConfig.xml" }) public class Candi
我这样写代码: @ContextConfiguration(locations = { "classpath:/test/BeanConfig.xml" }) @RunWith(SpringJUnit
假设我更改了文件,然后进行 pull 。 Git 会报错,因为本地仓库还没有保存,将被覆盖。如果我然后删除该添加并使文件与以前相同(与远程 repo 相同),那么会发生 pull 吗? 最佳答案 是的
前言 很多同学将虚拟列表当做亮点写在简历上面,但是却不知道如何手写,那么这个就不是加分项而是减分项了。在上一篇文章欧阳教会你 如何实现一个定高虚拟列表 ,但是实际项目中更多的是不定高虚拟列表,这篇文
我正在阅读《Java for Dummies》一书,但遇到了问题。我不明白为什么 @Override 不起作用。我确信这与我的代码有关,因为我之前已经获得了一个多态数组来使用覆盖,但它对我来说太简单了
我从我的项目中提取了这段代码,因为我试图找到我犯的一个错误,该错误使我的 BeginStoryboard 无法自行停止。我尽可能地简化了代码,但仍然没有发现问题。你认为它可能是什么?
这个问题在这里已经有了答案: Difference between char[] and char * in C [duplicate] (3 个答案) 关闭 7 年前。 我想我知道自己问题的答案,
我一直在使用 java 的 Scanner 类时遇到问题。我可以让它很好地读取我的输入,但问题是当我想要输出一些东西时。给定多行输入,我想在完全读取所有输入后只打印一行。这是我用来读取输入的代码:
对于这个问题,我已经用最简单的术语表达了这一点。 如果元素被点击,'active'类被添加到元素,'active'类从其他元素中移除。 但是,如果该元素是“事件的”并且它被第二次单击,则“事件”类不应
这会在桌面上创建一个新文件夹,但不会将文件夹 .pfrom 的内容 move 到文件夹 .pTo。 int main() { SHFILEOPSTRUCT sf = {0}; TCHA
我有一个关于多线程调试 DLL (/MDd) 和多线程调试 (/MTd) 设置的问题。它们之间的区别很明显:一个是使用动态库,一个是使用静态库。当我使用/MDd 编译我的程序时,一切都进行得很好。但是
我的问题是,如果我在页面加载时创建一个克隆变量,jQuery 只会 append 它一次。奇怪! Click to copy This is an element! $(document)
所以...我是一个开发 django 应用程序的新手,但是当我尝试通过 virtualbox heroku 运行 heroku run python manage.py syncdb 时,它一直在下面
我在 Spring Boot 初始化时遇到了问题。我在一个简单的 Spring Boot 项目中有这个结构。 com.project.name |----App.java (Annoted with
我在 www.7hermanosmx.com/menu.php 页面上有以下代码 - 一切正常,除了黄色框(类 menuholder)应该每行三个相互 float 。他们坚决拒绝这样做!我知道我做错了
我正在尝试在我正在构建的小型网站上添加一个下拉菜单。出于某种原因,我可以获得我想要向下滑动到 fadeOut() 的 div 并执行其他类似的操作,但我无法将它获取到 slideDown()。我不知道
我是一名优秀的程序员,十分优秀!