所以我把这个文件放在一个特定的目录中。
在这里,我试图访问我的文件:
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)')