这是我的代码:
Controller.java
package sample
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.TextField;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
public class Controller {
@FXML
Button button;
@FXML
TextField text;
@FXML
ImageView iv;
public void handleBtn()
{
String name = text.getText();
String address = "./res/"+name+".png";
Image image = new Image(address);
iv.setImage(image);
}
}
Main.java
package sample;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class Main extends Application {
@Override
public void start(Stage primaryStage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
primaryStage.setTitle("Hello World");
primaryStage.setScene(new Scene(root, 300, 275));
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
和sample.fxml
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane prefHeight="387.0" prefWidth="481.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8.0.171" fx:controller="sample.Controller">
<children>
<TextField fx:id="text" layoutX="41.0" layoutY="64.0" />
<Button fx:id="button" layoutX="64.0" layoutY="169.0" mnemonicParsing="false" onAction="#handleBtn" text="Button" />
<ImageView fx:id="iv" fitHeight="261.0" fitWidth="209.0" layoutX="222.0" layoutY="56.0" pickOnBounds="true" preserveRatio="true" />
</children>
</AnchorPane>
当我运行我的项目并在文本字段中键入1并单击按钮时,它将显示图片。现在,无需关闭程序,我将一个2.png文件添加到res文件夹。然后在文本字段中输入2。单击按钮后,它给我“ java.lang.IllegalArgumentException:无效的URL:无效的URL或找不到资源”,并且无法加载图像。但是,如果我终止程序并重新运行它,则键入2并单击按钮可以正常工作。
答案 0 :(得分:1)
这对我有用。
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
public class FxTemp extends Application {
public static void main(String[] args){
launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception {
Image image = new Image("file:///home/username/Desktop/test.png");
primaryStage.setTitle("animated");
ImageView imageView = new ImageView(image);
imageView.addEventHandler(MouseEvent.MOUSE_CLICKED, evt->{
System.out.println("click");
Image imager = new Image("file:///home/username/Desktop/test.png");
imageView.setImage(imager);
});
StackPane root = new StackPane();
root.getChildren().add(imageView);
primaryStage.setScene(new Scene(root, 512, 512));
primaryStage.show();
}
}
如果我更改test.png并单击视图,则会看到新图像。
您实际上不应该将文件添加到“资源”中,这些文件是您在执行之前提供的文件。 Intellij会将文件复制到某个位置,并在您的课程路径上使用该位置。然后,您可以通过getResource
访问它们。
如果要在其中添加文件的文件夹,然后要访问这些文件,则可以执行类似的操作。
String nextImage = new File("./res/image.png").toURI().toString();
然后,如果您的路径正确,则应该可以加载新图像。