Jump to content

Manvendra Bhuvan

Members
  • Posts

    1
  • Joined

  • Last visited

Posts posted by Manvendra Bhuvan

  1. 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 ???
×
×
  • Create New...