当前位置: 首页 > 知识库问答 >
问题:

Javafx Media类无法正常工作而没有任何错误

宋嘉懿
2023-03-14

为什么这个节目不播放音乐?我正在尝试用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);
}
}

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

我做错了什么?

共有1个答案

习淇
2023-03-14

我弄明白了这个问题出了什么问题。这是非常愚蠢的。

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

 类似资料:
  • 问题内容: 我正在尝试使用以下代码: 我需要检查是否返回false,但是当删除时,它不再起作用。为什么会这样,我如何使它起作用? 问题答案: 当您引入警报时它起作用的原因是,它停止了执行并为异步调用提供了足够的时间来完成。 您没有获得正确的值,因为在发布请求完成且回调已执行时,您的JavaScript已经完成执行。 您在这里有一些选择: 声明全局变量并执行同步调用,您可以使用发布的代码ABC进行此

  • 问题内容: 我一直收到此错误:无法找到任何有价值的Window提供程序。带有kivy继承人的“完整”错误: 多数民众赞成在错误和继承人的代码: 有人可以解释这个错误 问题答案: 您可能缺少一些依赖项。从文档: 安装依赖项(如果不需要,请跳过gstreamer(〜120MB),请参阅Kivy的依赖项): 要安装这些依赖项,请打开一个终端(可以是控制台,Pycharm终端窗口等),运行第一个命令,然后

  • 问题内容: 因此,我的设置无法按我想要的方式工作。因此,每当我运行该程序时,它就会立即从0变为100。我尝试使用,任务,并尝试了,但没有任何尝试。 这是我的程序: @MadProgrammer这是我尝试做一名摆动工作人员并将每个名称写入文档并更新进度栏的尝试。该程序将达到86%左右并停止运行,永远不会创建完成的文档。该程序将创建一个空白文档。这是我首先创建的SwingWorker对象,这是两种方法

  • 问题内容: 我在JLayeredpane上有两个JPanels。其中一个显示pdf,重叠的一个具有透明背景(我使用过setOpaque(false))。现在,我可以将图形添加到透明面板中,这样看来我实际上是在注释pdf。我想要一个橡皮擦工具来删除这些注释。我尝试使用以下代码 其中path是由多条线构成的形状。现在,不是在先前的图形上绘制 透明线 ,而是绘制 黑线 。我要去哪里错了? 问题答案: 请

  • 问题内容: 这看起来有效,但无法正常工作。我希望菜单悬停时’huh’div不透明。我尝试了淡入/淡出效果,但效果很好,但只有一次很奇怪。 问题答案: 不带点使用: