我想要我的java应用程序,如果用户选择单击按钮,则使用计算机中安装的默认PDF阅读器打开PDF。 我想要打开的PDF存在于同一个包" application"。
中我正在使用的代码是
package application;
import java.io.File;
import javafx.application.Application;
import javafx.application.HostServices;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.FileChooser;
import javafx.stage.Stage;
public class Main extends Application {
@Override
public void start(final Stage primaryStage) {
Button btn = new Button();
btn.setText("Load PDF");
btn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
File pdfFile = new File("computer_graphics_tutorial.pdf");
getHostServices().showDocument(pdfFile.toURI().toString());
}
});
StackPane root = new StackPane();
root.getChildren().add(btn);
Scene scene = new Scene(root, 300, 250);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
答案 0 :(得分:3)
如果PDF文件与调用者文件位于同一个包中(如您所述),则
getHostServices().showDocument(getClass()
.getResource("computer_graphics_tutorial.pdf").toString());
应该解决问题。
getResource
方法可以非常灵活地用于定位文件。以下是如何使用它的小描述:JavaFX resource handling: Load HTML files in WebView。