Si fichero.bat es
Y testbat.java
Código:
public class testbat {
public static void main(String[] args){
Runtime aplicacion = Runtime.getRuntime();
try{aplicacion.exec("cmd.exe /K C:/java/fichero.bat"); }
catch(Exception e){System.out.println(e);}
}
}
Me compila sin error y se ejecuta sin error , pero no veo la shell de dos con hola ... ¿?