How to run install.ins

how can i run install.ins script using a simple java code
[71 byte] By [shwetanku] at [2007-9-26 8:30:12]
# 1

The following lets you run system commands :

Runtime runtime = Runtime.getRuntime();

try {

process = runtime.exec("your command here");

}

catch (IOException e) {

e.printStackTrace();

}

ronnybatty at 2007-7-1 19:09:50 > top of Java-index,Core,Core APIs...