IOError: FileNotFound when trying to use jython in java

IOError: FileNotFound when trying to use jython in java

所以我把这个文件放在一个特定的目录中。

我在这里尝试访问我的文件:

public static void main(String[] args) {
    try {
        PythonInterpreter interpreter = new PythonInterpreter();
        interpreter.execfile("C:/Users/schueler/Desktop/TestForPhyton/testPython.py");
    } catch (Exception ex) {
        System.out.println(""+ex);
    }
}

我收到这个错误:

IOError: (2, 'File not found - C:\Users\schueler\Desktop\TestForPhyton\testPython.py (Das System kann die angegebene Datei nicht finden)')

拼写错误。

testPython.py ==> testPyhton.py(在目录中)

有自动完成工具,ide可以避免这类错误