I want to execute Embedded python in Java.
Python code
#!/usr/bin/python
import sys
print 'Number of arguments:', len(sys.argv), 'arguments.'
print 'Argument List:', str(sys.argv)
Java Code
StringWriter writer = new StringWriter(); // ouput will be stored here
ScriptEngineManager manager = new ScriptEngineManager();
ScriptContext context = new SimpleScriptContext();
context.setWriter(writer); // configures output redirection
ScriptEngine engine = manager.getEngineByName("python");
engine.eval(new InputStreamReader(Main.class.getResourceAsStream("/py/a.py")), context);
System.out.println(writer.toString());
current output
Number of arguments: 1 arguments.
Argument List: ['']
How can I pass parameters to this script in my code?
You run the script in terminal by $python a.py hellow worldd
.
now if you want to execute a.py
embedded in java, how you can pass the arguments hellow worldd
?
Parsing parameters to a script? I'm not sure what you mean by that. Do you mean pass a java object called argv, or do you mean replace a string in your script with another? Typically we talk about passing instances to the interpretor/script engine not the script, the script is just a txt file containing code, you can pass in java objects like this.