编译及执行以下代码,将从扬声器播放音乐:
class="shell" name="code">
C:\Users\lenovo\Desktop>javac -classpath jfugue-4.0.3.jar;. testxyz.java
C:\Users\lenovo\Desktop>java -classpath jfugue-4.0.3.jar;. testxyz
/**
* testxyz.java
*/
import org.jfugue.*;
public class testxyz
{
public static void main(String[] args)
{
Player player = new Player();
//player.play("C D E F G A B");
//player.play("C3w D6h E3q F#5i Rs Ab7q Bb2i");
player.play("E5s A5s C6s B5s E5s B5s D6s C6i E6i G#5i E6i | A5s E5s A5s C6s B5s E5s B5s D6s C6i A5i Ri");
}
}
更多示例请参考:http://www.jfugue.org/examples.html