Сейчас у меня есть заданный путь к классу, но я хочу, чтобы открывался открытый файл, и пользователь выбирает, какой файл открыть. Я пробовал JFileChooser, но пока не увенчался успехом. Вот мой код:
public static void main(String[] args) throws IOException {
JFileChooser chooser = new JFileChooser();
int returnValue = chooser.showOpenDialog( null ) ;
if( returnValue == JFileChooser.APPROVE_OPTION ) {
File file = chooser.getSelectedFile() ;
}
// I don't want this to be hard-coded:
String filePath = "/Users/Bill/Desktop/hello.txt";
Как мне это сделать?