Предполагая, что сценарий находится в файле jar, вы можете получить входной поток из ресурса и использовать его в качестве входных данных для Process
, созданного интерпретатором python:
// Note: the path to the script here is relative to the current class
// and follows strict resource name rules, since this is in a jar file
InputStream script = getClass().getResourceAsStream("visualize3D.py");
// The following creates a process to run python3.
// This assumes python3 is on the system path. Provide the full
// path to the python3 interpreter (e.g. /usr/bin/python3) if it's
// not on the path.
// The - option to python3 instructs it to execute a script provided
// as standard input.
Process process = new ProcessBuilder("python3", "-")
.start() ;
OutputStream out = process.getOutputStream();
byte[] buffer = new byte[1024];
int read = 0;
while((read = script.read(buffer)) != -1) {
pos.write(buffer, 0, read);
}
script.close();
Подробнее о том, как получить правильный путь для сценария, см. В разделе Как определить правильный путь для файлов F XML, CSS файлов, изображений и других ресурсов, необходимых моему приложению JavaFX?