?? sound.java
字號(hào):
package direction;
import sun.audio.*;
import java.io.*;
public class Sound extends Thread
{
public void run()
{
try
{
FileInputStream fileau=new FileInputStream("sound\\A.mid");
AudioStream as=new AudioStream(fileau);
AudioPlayer.player.start(as);
}
catch (Exception e) {}
}
public static void main(String[] args)
{
Sound sound = new Sound();
sound.start();
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -