Итак, у меня есть файл, расположенный в определенной директории.
Здесь я пытаюсь получить доступ к своему файлу:
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)')