通过数组给声音赋值,并使用JButton播放可以通过以下步骤实现:
下面是一个示例代码,演示如何通过数组给声音赋值,并使用JButton播放:
import javax.sound.sampled.*;
import javax.swing.*;
import java.awt.event.*;
public class SoundPlayer {
private static final String[] soundFiles = {
"path/to/sound1.wav",
"path/to/sound2.wav",
// 添加更多声音文件路径
};
public static void main(String[] args) {
JFrame frame = new JFrame("Sound Player");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JButton playButton = new JButton("Play");
playButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
try {
// 从数组中随机选择一个声音文件
String soundFile = soundFiles[(int) (Math.random() * soundFiles.length)];
// 加载声音文件
AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(SoundPlayer.class.getResource(soundFile));
// 获取音频剪辑对象
Clip clip = AudioSystem.getClip();
clip.open(audioInputStream);
// 播放声音
clip.start();
} catch (Exception ex) {
ex.printStackTrace();
}
}
});
frame.getContentPane().add(playButton);
frame.pack();
frame.setVisible(true);
}
}
在上面的示例代码中,我们创建了一个包含多个声音文件路径的字符串数组soundFiles。在按钮的ActionListener中,我们随机选择一个声音文件,加载它并使用Clip对象播放。你可以根据自己的需求修改soundFiles数组,添加更多声音文件的路径。
请注意,上述示例代码仅演示了如何通过数组给声音赋值,并使用JButton播放。在实际应用中,你可能需要添加更多的功能,例如停止播放、循环播放等。
领取专属 10元无门槛券
手把手带您无忧上云