用户通过单选按钮选择一个并按下播放按钮后播放声音片段的简单GUI应用程序。在清理和构建之后,从JAR文件执行会导致在选择剪辑并按下播放按钮时不播放声音。
条件:NetBeans IDE,声音在IDE中成功播放到包中,JAR中的.wav文件路径正确,文件位于正确目录中的可执行JAR中,使用2个类:一个用于GUI和一个.wav处理程序类(两者都在IDE中成功运行。屏幕截图中的更多细节。我认为应该在Player calss中调用getResource()方法,但我不知道如何编写它。
用于从GUI类中调用资源的代码段。基础是新玩家(“whateverthefilepathis”)。start()。 (这在IDE中工作正常,所以没有问题):
private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {
if (jRadioButton1.isSelected()){
URL file = QuotesButtonUI.class.getResource("/my/sounds/fear_converted.wav");
new Player (file.getFile()).start();
}
else if (jRadioButton2.isSelected()){
URL file = QuotesButtonUI.class.getResource("/my/sounds/initiated_converted.wav");
new Player (file.getFile()).start();
}
这是用于处理.wav的Player类。在GUI类中,我使用新的Player()。start()调用。我想在Player类中应该有一个getResource()调用,但我不确定。
package my.quotesbutton;
import java.io.File;
import java.io.IOException;
import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.DataLine;
import javax.sound.sampled.FloatControl;
import javax.sound.sampled.LineUnavailableException;
import javax.sound.sampled.SourceDataLine;
import javax.sound.sampled.UnsupportedAudioFileException;
public class Player extends Thread {
private String filename;
private Position curPosition;
private final int EXTERNAL_BUFFER_SIZE = 524288; // 128Kb
enum Position {
LEFT, RIGHT, NORMAL
};
public Player(String wavfile) {
filename = wavfile;
curPosition = Position.NORMAL;
}
public Player(String wavfile, Position p) {
filename = wavfile;
curPosition = p;
}
public void run() {
File soundFile = new File(filename);
if (!soundFile.exists()) {
System.err.println("Wave file not found: " + filename);
return;
}
AudioInputStream audioInputStream = null;
try {
audioInputStream = AudioSystem.getAudioInputStream(soundFile);
} catch (UnsupportedAudioFileException e1) {
e1.printStackTrace();
return;
} catch (IOException e1) {
e1.printStackTrace();
return;
}
AudioFormat format = audioInputStream.getFormat();
SourceDataLine auline = null;
DataLine.Info info = new DataLine.Info(SourceDataLine.class, format);
try {
auline = (SourceDataLine) AudioSystem.getLine(info);
auline.open(format);
} catch (LineUnavailableException e) {
e.printStackTrace();
return;
} catch (Exception e) {
e.printStackTrace();
return;
}
if (auline.isControlSupported(FloatControl.Type.PAN)) {
FloatControl pan = (FloatControl) auline
.getControl(FloatControl.Type.PAN);
if (curPosition == Position.RIGHT)
pan.setValue(1.0f);
else if (curPosition == Position.LEFT)
pan.setValue(-1.0f);
}
auline.start();
int nBytesRead = 0;
byte[] abData = new byte[EXTERNAL_BUFFER_SIZE];
try {
while (nBytesRead != -1) {
nBytesRead = audioInputStream.read(abData, 0, abData.length);
if (nBytesRead >= 0)
auline.write(abData, 0, nBytesRead);
}
} catch (IOException e) {
e.printStackTrace();
return;
} finally {
auline.drain();
auline.close();
}
}
}
答案 0 :(得分:1)
您无法使用java.io.File API访问jar文件中的 ,只是因为jar中的项目不是文件。
您确实需要使用getResource()方法(或getResourceAsStream()):http://docs.oracle.com/javase/tutorial/deployment/webstart/retrievingResources.html
起初看起来有点违反直觉,但getResource()适用于文件以及 jars (或者甚至是远程定位的资源,如果是链接教程),ClassLoader将处理资源物理访问的脏细节。简而言之:永远不要将File API用于资源 - 只能使用资源API访问资源。