Java exec exec(String[] args)

Here you can find the source of exec(String[] args)

Description

exec

License

Open Source License

Declaration

public static Process exec(String[] args) throws IOException 

Method Source Code


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

import java.io.IOException;

public class Main {
    public static Process exec(String[] args) throws IOException {
        ProcessBuilder processBuilder = new ProcessBuilder(args);
        return processBuilder.start();
    }/*from  www.  j  a v a 2 s.  c o  m*/
}

Related

  1. exec(String... args)
  2. exec(String... cmd)
  3. exec(String... cmdarray)
  4. exec(String... command)
  5. exec(String... command)
  6. execAdbCmd(String cmd)
  7. execAndGetOutput(ProcessBuilder builder)
  8. execCmd(String cmd)
  9. execCmd(String cmd)