I loaded a java jar file into 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

link|improve this question

66% accept rate
1  
No idea what sikuli is, but looks like java is unable to access TJF.jar, perhaps specifying path to the jar will help (in call). – Usman Saleem Oct 10 '11 at 14:38
Your were right. Thx. – user366121 Oct 10 '11 at 14:42
feedback

1 Answer

up vote 0 down vote accepted

The comment was correct. Full path necessary. No "load" line necessary.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.