Javafx Media类无法正常运行,没有任何错误

问题描述 投票:2回答:2

为什么此程序不播放音乐?我正在尝试使用JavaFX创建一个应用程序,以允许用户播放他要播放的任何MP3文件。但这根本不起作用!为什么?

它绝对没有错误!

package application;

import java.io.File;
import java.nio.file.Paths;
import java.util.ArrayList;
import javafx.application.Application;
import javafx.scene.control.Alert;
import javafx.scene.control.Alert.AlertType;
import javafx.scene.image.Image;
import javafx.stage.DirectoryChooser;
import javafx.stage.FileChooser;
import javafx.stage.Stage;
import javafx.scene.media.Media;
import javafx.scene.media.MediaPlayer;

public class Start extends Application {

public void start(Stage primStage) {
    try {
        // Validation for first time start

        Alert a = new Alert(AlertType.INFORMATION);
        a.setTitle("Welcome");
        a.setHeaderText("Welcome to Orpheus!");
        a.setContentText("Welcome to Orpheus. Pick the folder in which all your music is located");

        Stage stg = (Stage) a.getDialogPane().getScene().getWindow();
        stg.getIcons().add(new Image(this.getClass().getResource("harp.png").toString()));
        primStage.getIcons().add(new Image(this.getClass().getResource("harp.png").toString()));

        a.showAndWait();

        DirectoryChooser dc = new DirectoryChooser();
        dc.setInitialDirectory(new File(System.getProperty("user.home")));
        dc.setTitle("Pick your folder!");

        File f = dc.showDialog(primStage);
        File[] fileArray = f.listFiles();
        boolean[] song = new boolean[fileArray.length];
        int j = 0;

        if (fileArray != null) {
            for (File child : fileArray) {
                String ext = "";
                int i = child.getName().lastIndexOf('.');

                if (i >= 0) {
                    ext = child.getName().substring(i+1);
                }

                if (ext.equals("mp3")) {
                    song[j] = true;
                    j++;
                } else {
                    song[j] = false;
                    j++;
                }
            }
        }

        j = 0;
        ArrayList<File> fileList = new ArrayList<>();

        for (boolean b : song) {
            if(b) {
                fileList.add(fileArray[j]);
            }
            j++;
        }

        //New codes!
        ArrayList<String> names = new ArrayList<>();

        for (File fi : fileList) {
            String tmp = fi.getCanonicalPath();
            tmp = tmp.replaceAll("\\\\", "/");
            names.add(tmp);
        }

        Media m = new Media("file:///" + names.get(0));
        MediaPlayer mp = new MediaPlayer(m);
        mp.play();

        //App ends with no sleep method for threads
    } catch (Exception e) {
        e.printStackTrace();
    }
}

public static void main(String[] args) {
    launch(args);
}
}

但是现在我得到了错误:

MediaException:MEDIA_UNAVAILABLE:\ file:\ C:\ Users \ Kaboom \ Music \ Closer.mp3(文件名,目录名或卷标语法不正确)在javafx.scene.media.Media。(Media.java:407)在application.Start.start(Start.java:75)在com.sun.javafx.application.LauncherImpl.lambda $ launchApplication1 $ 162(LauncherImpl.java:863)在com.sun.javafx.application.PlatformImpl.lambda $ runAndWait $ 175(PlatformImpl.java:326)在com.sun.javafx.application.PlatformImpl.lambda $ null $ 173(PlatformImpl.java:295)在java.security.AccessController.doPrivileged(本机方法)在com.sun.javafx.application.PlatformImpl.lambda $ runLater $ 174(PlatformImpl.java:294)在com.sun.glass.ui.InvokeLaterDispatcher $ Future.run(InvokeLaterDispatcher.java:95)在com.sun.glass.ui.win.WinApplication._runLoop(本机方法)在com.sun.glass.ui.win.WinApplication.lambda $ null $ 148(WinApplication.java:191)在java.lang.Thread.run(未知来源)

我做了一些研究,并替换了一些代码。现在唯一发生的事情是没有音乐播放,并且应用程序停止运行。

我做错了什么?

java javafx media-player media
2个回答
0
投票

我想出了这个问题出了什么问题。非常愚蠢。

我只需要将MediaPlayer添加到MediaView和GUI中>


0
投票

像这样打开媒体:

© www.soinside.com 2019 - 2024. All rights reserved.