我有一个python文件,正在用于下载《每日新闻》。我试图将其设置为使用Windows Task Scheduler自动运行,但python文件要求将JAR文件存储在同一文件夹中。
JAR文件的python代码:
os.system('java -jar Reporter.jar p=Reporter.properties m=Robot.XML Sales.getReport xxxxxx, Sales, Summary, Daily, %s'%c)
现在,当我运行作业时,错误是它无法访问JAR文件。 我该如何解决这个问题。我是否需要在python代码中包含某些内容,或者可以在Task Scheduler中设置一些外部参数?