Java exec executeComand(String[] comand)

Here you can find the source of executeComand(String[] comand)

Description

execute Comand

License

Open Source License

Declaration

public static Process executeComand(String[] comand) throws IOException 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.io.IOException;

public class Main {
    public static Process executeComand(String[] comand) throws IOException {
        return Runtime.getRuntime().exec(comand);
    }/*  ww  w . j a v a2s . c  o  m*/
}

Related

  1. executeBashScriptWithParams(ArrayList script)
  2. executeBatFile(String batFile)
  3. executeCD(String dirPath)
  4. executeCmdCommand(String command)
  5. executeCmdForReader(String cmd)
  6. executeCommand(final ProcessBuilder pb)
  7. executeCommand(final String cmd)
  8. executeCommand(List cmdArray)
  9. executeCommand(List command)