Re: Newbie problem: javax.sound.midi & finding devices
Re: Newbie problem: javax.sound.midi & finding devices
- Subject: Re: Newbie problem: javax.sound.midi & finding devices
- From: Michael Hopkins <email@hidden>
- Date: Thu, 18 Dec 2003 16:26:26 -0800
Michael,
These classes you are referring to are Sun's midi classes that are part
of swing and are not part of the CoreAudio Java classes that are
specific to Mac OS X.
You should email the java-dev list for this question.
Thanks,
Michael
On Dec 18, 2003, at 3:49 PM, Michael P. Rogers wrote:
Hi,
Sorry about this basic question, and I hope this is the right list for
it. I'm trying to use the javax.sound.midi package and can't even
find my external synthesizer. My code starts off with:
System.out.println("All available devices");
System.out.println("---------------------");
MidiDevice.Info [] inf = MidiSystem.getMidiDeviceInfo();
for(int j=0; j < inf.length; j++)
System.out.println("\nDescription: " +
inf[j].getDescription() +
"\nName: " + inf[j].getName() +
"\nVendor: " + inf[j].getVendor());
<snip>
_______________________________________________
coreaudio-api mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/coreaudio-api
Do not post admin requests to the list. They will be ignored.