diff options
author | said belhadj <saidbelhadj0312@gmail.com> | 2021-06-26 01:58:15 +0200 |
---|---|---|
committer | said belhadj <saidbelhadj0312@gmail.com> | 2021-06-26 01:58:15 +0200 |
commit | e58b48a3162539cb79ff495d6040ca6f53f069d6 (patch) | |
tree | b85ebc592158883f806d6dc7b45e53fd7ee3b5df /src/musichub/main/Main.java | |
parent | f920b48762cae194d5a9f7808273826714166424 (diff) |
Add the possibility to listen a song thanks to Audio System library
Diffstat (limited to 'src/musichub/main/Main.java')
-rw-r--r-- | src/musichub/main/Main.java | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/musichub/main/Main.java b/src/musichub/main/Main.java index b72a95b..58080bd 100644 --- a/src/musichub/main/Main.java +++ b/src/musichub/main/Main.java @@ -2,11 +2,17 @@ package musichub.main; import musichub.business.*; +import java.io.IOException; +import java.util.ArrayList; import java.util.Iterator; +import java.util.List; import java.util.Scanner; +import javax.sound.sampled.LineUnavailableException; +import javax.sound.sampled.UnsupportedAudioFileException; + public class Main { - public static void main(String[] args) { + public static void main(String[] args) throws UnsupportedAudioFileException, IOException, LineUnavailableException { MusicHub theHub = new MusicHub(); @@ -55,7 +61,10 @@ public class Main { albumTitle = scan.nextLine(); try { + List<AudioElement> songs = theHub.getAlbumSongs(albumTitle); System.out.println(theHub.getAlbumSongs(albumTitle)); + String song = scan.nextLine(); + theHub.getSong(songs, song); } catch (NoAlbumFoundException ex) { System.out.println("No album found with the requested title " + ex.getMessage()); } |