Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Jython でデバッグするために jar ファイルをロードするにはどうすればよいですか?
JAR ファイルを sys.path に追加するだけです。
import sys sys.path.append(r'C:\lib\guava-12.jar') from com.google.common.io import *
それらをクラスパスに追加してください!
答えはそれをすべて言います;-)