Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/09/2009, 17:11
chnn'
 
Fecha de Ingreso: febrero-2007
Mensajes: 141
Antigüedad: 17 años, 9 meses
Puntos: 1
Respuesta: Cerrar programas o procesos

Ya resolvi el problema.. les dejo la solucion:

Código:
 public static void MusicaOFF(){
    	String osName = System.getProperty("os.name");
        String system =  "";
        if(osName.toUpperCase().contains("WIN")){   //Windows
            system+="tskill wmplayer";
        } else {                                    //Linux
            system+="killall wmplayer";
        }      

        Process hijo;
        try {
            hijo = Runtime.getRuntime().exec(system);
            hijo.waitFor();
            if ( hijo.exitValue()==0){
                System.out.println( "WMP Killed" );
            }else{
		System.out.println( "Cannot kill WMP. Exit code: " + hijo.exitValue() );
            }
        } catch (IOException e) {
            System.out.println("Incapaz de matar soffice.");
        } catch (InterruptedException e) {
            System.out.println("Incapaz de matar soffice.");
        }