Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. public static void main(String[] args) {
  2.  
  3. try {
  4. FileInputStream fis;
  5. Player player;
  6. fis = new FileInputStream("Macintosh HD/Usuarios/imabsolutions-biondi/Escritorio/Kana-Boon - Silhouette.mp3");
  7. BufferedInputStream bis = new BufferedInputStream(fis);
  8.  
  9. player = new Player(bis); // Llamada a constructor de la clase Player
  10. player.play(); // Llamada al método play
  11. } catch (JavaLayerException | FileNotFoundException e) {
  12. System.out.println("Error" + e);;
  13. }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement