I loaded a java jar file into 开发者_StackOverflow社区http://www.sikuli.org/ and tried to run it like this but it is not working. Any hints?
load("C:\Users\...\TJF.jar")
import subprocess
subprocess.call(['java', '-jar', 'TJF.jar'])
Error message: Unable to access jarfile TJF.jar
The comment was correct. Full path necessary. No "load" line necessary.
精彩评论