getControl wirft exception

UweA

Mitglied
Hallo,

ich möchte auf das "Mute"-Control eines Mixerports zugreifen, erhalte aber dabei eine "Unsupported control type: Mute" exception, obwohl das Control vorhanden ist.

Java:
...
portMixer.open();
Port LineIn = (Port) portMixer.getLine(Port.Info.LINE_IN);
LineIn.open();
	
Control[] controls = LineIn.getControls();
for (i=0; i<controls.length; i++)
{
  System.out.println(controls[i].toString());
}

BooleanControl Mute = (BooleanControl) LineIn.getControl(BooleanControl.Type.MUTE);
Die Ausgabe ist:
"Hauptlautstärke Control containing Mute, and Volume Controls"

Aus der Ausgabe würde ich schließen, dass sowohl MUTE als auch VOLUME vorhanden ist.
In Zeile 13 wirf er jedoch die exception "Unsupported control type: Mute".

Weiß jemand, warum?

Gruß,
Uwe
 
Ähnliche Java Themen
  Titel Forum Antworten Datum
4 AudioSystem.write() wirft IllegalArgumentException, obwohl dies eig. nicht passieren dürfte Spiele- und Multimedia-Programmierung 2
fastjack Parallele Soundwiedergabe wirft Exception Spiele- und Multimedia-Programmierung 6
N Seltsame Exception bei Code eines Spiele-Tutorials Spiele- und Multimedia-Programmierung 6
J Exception warum? Spiele- und Multimedia-Programmierung 14
Androbin UNMÖGLICHe "Nullpointer"-Exception Spiele- und Multimedia-Programmierung 25
F Screenshot Programm nach Exception weiterlaufen lassen? Spiele- und Multimedia-Programmierung 9
W Panel/JPAnel createImage() Exception Spiele- und Multimedia-Programmierung 2
Kenan89 lwjgl Exception Spiele- und Multimedia-Programmierung 3
R LWJGL IllegalArgument Exception bei glTexImage2D Spiele- und Multimedia-Programmierung 26
I Exception: java.lang.UnsatisfiedLinkError: [...]: Can't find dependent libraries Spiele- und Multimedia-Programmierung 9
D unsinnige null pointer exception Spiele- und Multimedia-Programmierung 4
N JMF: Exception bei setLevel Spiele- und Multimedia-Programmierung 4
F Multithread-Arraylist-null pointer exception Spiele- und Multimedia-Programmierung 20
A Concurrent Modification Exception Spiele- und Multimedia-Programmierung 3
J Opengl Texture laden Null Pointer Exception Spiele- und Multimedia-Programmierung 6
T Exception beim starten von Java3d Apps Spiele- und Multimedia-Programmierung 2

Ähnliche Java Themen

Neue Themen


Oben