Jump to content

How to pass java variable value as an argument to command line through a java program


Manvendra Bhuvan

Recommended Posts

I am using this code to run python program from terminal with '34' as argument command line in terminal:

 

import java.lang.*;
import java.lang.Process.*;
import java.io.*;
public class java3 {
public static void main(String args[]) {
try{
Runtime.getRuntime().exec(new String[] { "xterm","-e","python","pthon1.py","34" });
}
} catch(IOException e) {
System.out.println("error:"+e);
}
}
}
but i want to store that value '34' in a integer variable and then pass to terminal.
please any suggestions ???
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...