我使用的是NetBeans IDE 8.2。这是我正在使用的代码:
package digitalpictureframe;
import javafx.application.Application;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.image.ImageView;
import javafx.stage.Stage;
import javafx.animation.KeyFrame;
import javafx.animation.Timeline;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.util.Duration;
import javafx.animation.Animation;
import javafx.scene.image.Image;
import javafx.scene.layout.VBox;
/**
*
* @author
*/
public class DigitalPictureFrame extends Application {
//Variables
private final static int IMAGE_COUNT = 6; //max array size
private int count = 0; //initialize count
Image[] cats = new Image[IMAGE_COUNT]; //initialize array size
/**
*
* @param stage
*/
@Override
public void start(Stage stage) {
//load images into array
for (int i = 0; i < cats.length; i++) {
cats[i] = new Image("img\\" + (i + 1) + ".jpg");
}
//create vbox pane
VBox vBox = new VBox();
vBox.setAlignment(Pos.CENTER);
ImageView imageView = new ImageView(cats[0]);
vBox.getChildren().add(imageView);
//handler class
class ImageHandler implements EventHandler<ActionEvent> {
@Override
public void handle(ActionEvent event) {
//increment count variable
count++;
//reset image index to beginning
if (count >= cats.length) {
count = 0;
}
//update image displayed in imageView
imageView.setImage(cats[count]);
}
}
//build keyframe
Duration seconds = new Duration(2000);
ImageHandler image = new ImageHandler();
KeyFrame keyFrame = new KeyFrame(seconds, image);
//build timeline
Timeline timeline = new Timeline(keyFrame);
timeline.setCycleCount(Animation.INDEFINITE);
//create scene
Scene scene = new Scene(vBox);
//set up stage
stage.setTitle("Digital Picture Frame");
stage.setScene(scene);
stage.show();
timeline.playFromStart();
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
launch(args);
}
}
加载到cats阵列中的图像位于名为“img”的src文件夹中,编号为1-6。当我从NetBeans IDE运行程序时,它运行得非常完美;然而,当我试图在构建项目后创建的dist文件夹中执行JAR文件时,它根本不会运行。当我尝试使用命令行运行它时,我得到以下结果:
Exception in Application start method
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(LauncherImpl.java:389)
at com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:328)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at sun.launcher.LauncherHelper$FXHelper.main(Unknown Source)
Caused by: java.lang.RuntimeException: Exception in Application start method
at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:917)
at com.sun.javafx.application.LauncherImpl.lambda$launchApplication$155(LauncherImpl.java:182)
at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.IllegalArgumentException: Invalid URL: Invalid URL or resource not found
at javafx.scene.image.Image.validateUrl(Image.java:1118)
at javafx.scene.image.Image.<init>(Image.java:620)
at digitalpictureframe.DigitalPictureFrame.start(DigitalPictureFrame.java:37)
at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$162(LauncherImpl.java:863)
at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$175(PlatformImpl.java:326)
at com.sun.javafx.application.PlatformImpl.lambda$null$173(PlatformImpl.java:295)
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.javafx.application.PlatformImpl.lambda$runLater$174(PlatformImpl.java:294)
at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
at com.sun.glass.ui.win.WinApplication.lambda$null$148(WinApplication.java:191)
... 1 more
Caused by: java.lang.IllegalArgumentException: Invalid URL or resource not found
at javafx.scene.image.Image.validateUrl(Image.java:1110)
... 11 more
Exception running application digitalpictureframe.DigitalPictureFrame
我假设问题是JAR文件无法访问图像文件,但我不知道如何修复它。如何将图像加载到JAR文件中?
我假设图像正确地放在罐子里(所以请解开你的罐子,看看它们是否真的在那里)。
如果它们是,那么你应该能够像这样加载它们:
new Image(Class.getResourceAsStream("/img/" + (i + 1) + ".jpg"));
正如上面所说的那样。oracle关于图像类: 我在github上分享了我的简单项目,所以你可以很容易地访问代码。 这是我的一段代码: 但这不想为我工作,我明白了: 原因:java。lang.IllegalArgumentException:在javafx上找不到无效的URL或资源。场景形象形象validateUrl(Image.java:1081) 在(Image.java:1081)我发现: 我
我再次面临一个奇怪的问题,希望这里有人能帮助我。 模块的Pom如下所示: CSV路径-文件在propery files中配置如下: java配置文件的部分如下:
我已经使用netbeans制作了jar文件,使用Build和Clean项目选项。我得到了.jar文件,现在当我执行它一小段时间后,cmd窗口出现,并给出一个错误:“Could not find or load main class while executing jar file” 但是,如果我使用命令提示符Java-jar执行jar,它可以正常工作 Netbeans的输出为: 而在jar文件中,
问题内容: 我的java程序打包在jar文件中,并使用外部jar库bouncy castle。我的代码可以正常编译,但是运行jar会导致以下错误: 线程“主”中的异常java.lang.SecurityException:清单主要属性的无效签名文件摘要 我在Google上搜索了一个多小时,一直在寻找解释,却发现价值不大。如果有人之前曾见过此错误并可以提供帮助,则我有义务。 问题答案: 此处列出的解
我尝试从Windows 8命令行使用maven插件,但失败了: java.lang.ClassNotFoundException:com.sun.mirror.apt.AnnotationProcessorFactory 我知道这表明Maven在我的JDK中找不到tools.jar,但是我不知道如何添加这个(当然JDK已经安装了)。 以下是有关我的配置的一些详细信息: 所以我也尝试在我的pom.x