我正在尝试创建一个MP3播放器程序,我需要一种方法将mp3的文件路径存储在一个变量中,这样我就可以在另一个类中加载该变量并播放该文件。保存/加载的当前代码块现在是.txt,但我需要用变量save替换它。
try {
// What to do with the file.
textarea.read( new FileReader( file.getAbsolutePath() ), null );
} catch (IOException ex) {
System.out.println("Problem accessing file"+file.getAbsolutePath());
}
} else {
System.out.println("File access cancelled.");
}
我在读取变量的类中使用这些导入,
import org.lwjgl.LWJGLException;
import org.lwjgl.Sys;
import java.net.*;
import java.io.*;
import java.io.FileInputStream;
import java.util.*;
import javazoom.jl.player.*;
import org.lwjgl.input.Keyboard;
import org.lwjgl.opengl.Display;
import org.lwjgl.opengl.DisplayMode;
import org.lwjgl.opengl.GL11;
import org.newdawn.slick.openal.Audio;
import org.newdawn.slick.openal.AudioLoader;
import org.newdawn.slick.openal.SoundStore;
import org.newdawn.slick.util.ResourceLoader;
以及相关课程的导入。
答案 0 :(得分:0)
private void jMenuItem1ActionPerformed(java.awt.event.ActionEvent evt) {
int returnVal = fileChooser.showOpenDialog(this);
if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = fileChooser.getSelectedFile();
try{
FileInputStream mp3 = new FileInputStream(fileChooser.getSelectedFile());
Player playMP3 = new Player(mp3);
}catch(Exception e){System.out.println(e);
} }
}