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.");
}