How can I load jar files for debugging in Jython?

How can I load jar files for debugging in Jython?

+4
source share
2 answers

Just add the JAR file to sys.path.

import sys sys.path.append(r'C:\lib\guava-12.jar') from com.google.common.io import * 
+3
source

add them to the classpath!

the answer says everything -)

+2
source

All Articles