void setup() {
String scriptPath = "C:\\path\\to\\script.ps1"; // PowerShell script path
String param1 = "value1";
String param2 = "value2";
try {
// Construct command
String command = " -File " + scriptPath + " -param1 " + param1 + " -param2 " + param2;
Process process = ().exec(command);
// Read the output
BufferedReader reader = new BufferedReader(new InputStreamReader(()));
String line;
while ((line = ()) != null) {
println(line); // Print output to Processing console
}
} catch (Exception e) {
();
}
}
Note: The code is usedInputStreamReaderCome to readPowerShellInformation from script feedback.
2. PowerShell script call Processing-java
Run Processing scripts directly
If you frequently call the Processing-java program, you can set the system variables and add their directory address to the Path.
Pass command line parameters
Then pass in the Processing codeargs
Array receiving parameters:
void setup() {
size(400, 400);
background(255);
// Check whether there are parameters passed in
if (null == args) {
} else {
if ( > 0) {
for (int i = 0; i < ; i++) {
println("Received parameter " + (i + 1) + ": " + args[i]);
}
} else {
println("No parameters were received.");
}
}
}
void draw() {
// Other drawing codes can be added here
}
Parameters to be passed in can be placed separately in a string array for easy definition and management, such as:# Define the parameters to be passed
$parameters = "parameter 1", "parameter 2", "parameter 3"
# Build a complete command
$command = "$processingJavaPath --sketch=$sketchPath --run --args $($parameters -join ' ')"