All pastes #1857935 Raw Edit

Java Command Line Executer

public java v1 · immutable
#1857935 ·published 2010-04-07 16:59 UTC
rendered paste body
import java.io.*;import java.util.*;   public class Exec {   public static void main(String args[]) throws IOException {      Process proc = Runtime.getRuntime().exec(args);      BufferedReader br = new BufferedReader(new InputStreamReader(proc.getInputStream()));      String line;      while ((line = br.readLine()) != null) {         System.out.println(line);      }   }}