使用这个线程我已经想出了如何使用 getData(),但是我得到的不是 0x51 的任何东西,而是随机值,例如 [B@37d78d93、[B@29d74462 和 [B@1c5ca652
输出元消息本身也会产生类似的值,例如 javax.sound.midi.MetaMessage@364d4fca、javax.sound.midi.MetaMessage@5581f86d 和 javax.sound.midi.MetaMessage@3f011b2b
例如,使用
System.out.print ("the meta message is " + mm + ", ");
System.out.print ("the type of meta message is " + mm.getType());
System.out.println(" and the data is " + mm.getData());
输出
the meta message is javax.sound.midi.MetaMessage@3f011b2b, the type of meta message is 81 and the data is [B@1c5ca652
如何使用输出mm
值末尾的值或从中获取的值mm.getData()
来获取 MIDI 文件的速度?