gpt4 book ai didi

java - 在 java netbeans 中的 javaFX 中使用 Media 时出错

转载 作者:太空宇宙 更新时间:2023-11-04 14:51:25 25 4
gpt4 key购买 nike

我是java新手,为了了解更多信息,我正在使用媒体类在“javaFX”中编写一个媒体播放器。我收到错误,但不确定是什么原因导致此错误以及如何修复它。我在 Fedora 18 中安装了“NetBeans IDE 8.0”和 jdk7 64 位。

@Override
public void start(Stage stage) throws Exception{


Media media=new Media("Path of movie");
MediaPlayer player=new MediaPlayer(media);
MediaView view=new MediaView(player);

Group root = new Group();
root.getChildren().add(view);

Scene scene = new Scene(root,400,400,Color.BLACK);
stage.setScene(scene);
stage.show();

player.play();

}

但我收到此错误:

    error: constructor Media in class Media cannot be applied to given types;
Media media=new Media("");
required: no arguments
found: String
reason: actual and formal argument lists differ in length

如何修复它?

我还有两个问题:

1.我该怎么做才能让程序播放全高清视频?

2.如何限制程序只播放mkv格式?

感谢您的热情解答。

最佳答案

我不知道 JFX,但尝试一下

Media media=new Media();

关于java - 在 java netbeans 中的 javaFX 中使用 Media 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23726689/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com