Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public static void playMusic(String path) {
  2.  
  3.  
  4.  
  5.  
  6.  
  7. InputStream ost;
  8.  
  9. try {
  10.  
  11. ost = new FileInputStream(new File(path));
  12. AudioStream audio = new AudioStream(ost);
  13. AudioPlayer.player.start(audio);
  14.  
  15. } catch (Exception e) {
  16.  
  17. System.out.println("ERROR");
  18.  
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement