音を繰り返し鳴らしながら、再びファイルの入力画面に移りたいのですが、処理が止まっているようです。
補足:
入力画面から音声ファイルを入力し、音を繰り返し鳴らしながら再び入力画面に戻り、前と違うファイルが入力された場合には、音声を入れ替えるプログラムが作りたいです。
java
1package net.ddns.fantsasia.audio_work_technology; 2 3import java.io.File; 4import java.io.IOException; 5import java.util.Scanner; 6 7import javax.sound.sampled.AudioFileFormat.Type; 8import javax.sound.sampled.AudioFormat; 9import javax.sound.sampled.AudioInputStream; 10import javax.sound.sampled.AudioSystem; 11import javax.sound.sampled.Clip; 12import javax.sound.sampled.DataLine; 13import javax.sound.sampled.LineUnavailableException; 14import javax.sound.sampled.UnsupportedAudioFileException; 15 16public class AWT_001 { 17 18 public static void main(String[] args) { 19 20 boolean flag1 = true; 21 boolean flag2 = true; 22 String str1 = null; 23 String str2; 24 PlaySound sound = new PlaySound(); 25 26 System.out.println("ファイルを選択してください。"); 27 System.out.println("=== サポートされている形式 ==="); 28 Type[] typeArray = AudioSystem.getAudioFileTypes(); 29 for(Type type : typeArray) { 30 System.out.println(type.toString()); 31 } 32 while(flag1) { 33 while(flag2) { 34 System.out.println("?"); 35 Scanner scan = new Scanner(System.in); 36 str1 = scan.next(); 37 flag2 = false; 38 } 39 if(str1 == PlaySound.str1) { 40 flag2 = true; 41 } 42 else { 43 sound.play(str1); 44 flag2 = true; 45 } 46 } 47 } 48} 49// System.out.println("ファイルは、”" + str1 + "”ですね?(Y/N)"); 50 51// java.awt.Toolkit.getDefaultToolkit().beep(); 52 53 54class PlaySound { 55 56 static String str1; 57 58 void play(String str2) { 59 60 str1 = str2; 61 AudioInputStream ais = null; 62 63 try { 64 ais = AudioSystem.getAudioInputStream(new File("/home/akira/" + str2)); 65 AudioFormat af = ais.getFormat(); 66 DataLine.Info info = new DataLine.Info(Clip.class, af); 67 Clip clip = (Clip)AudioSystem.getLine(info); 68 clip.open(ais); 69 clip.loop(clip.LOOP_CONTINUOUSLY); 70 clip.flush(); 71 while(clip.isActive()) { 72 Thread.sleep(100); 73 } 74 } catch(UnsupportedAudioFileException | IOException | LineUnavailableException | InterruptedException e) { 75 e.printStackTrace(); 76 } finally { 77 try { 78 ais.close(); 79 } catch(IOException e) { 80 e.printStackTrace(); 81 } 82 } 83 } 84} 85
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。