/* * Test.java * * Created on January 21, 2002, 9:34 AM */ /** * * @author root * @version */ import java.util.StringTokenizer; public class Test { /** Creates new Test */ public Test() { } public static void main(String args[]) { SystemCall myCall = new SystemCall(args[0]); String[] myOutput = myCall.runCommand(); StringTokenizer stok = null; if(myOutput!=null){ for(int x=1; x 0){ for(int y=1; y<=args.length; y++){ try{ int myInt = Integer.parseInt(args[y]); String field = tmpString[myInt]; System.out.print(field + " "); } catch(Exception e){ } } System.out.println(); } } } } }