我想要我的Java应用程序,以便如果用户选择单击按钮,则使用计算机中安装的默认PDF阅读器打开PDF.
我想打开的PDF存在于同一包“应用程序”中.
我正在使用的代码是
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);
}
}
解决方法:
如果PDF文件与调用方文件位于同一软件包中(如您所述),则
getHostServices().showDocument(getClass()
.getResource("computer_graphics_tutorial.pdf").toString());
应该解决问题.
可以非常灵活地使用getResource
方法来查找文件.这里是一个简短的描述如何使用它:JavaFX resource handling: Load HTML files in WebView.