开源 PDFViewer Javafx
Open Source PDFViewer Javafx
我想要一个 pdf 文件显示到我的 javafx 应用程序中。到现在为止,我已经尝试了很多没有运气的事情,包括 pdf.js html pdf 查看器,但我遇到了以下异常:
Caused by: netscape.javascript.JSException: SyntaxError: Invalid character '\u8216'
有没有人知道任何更简单的方法,应该是免费和开源的。谢谢
我刚刚创建了一个应用程序,您可以查看。 Here. You could probably find a free application that converts PDF
to HTML
. This conversion was done using https://www.idrsolutions.com/online-pdf-to-html5-converter/。我个人使用 Acrobat Reader 来转换我的文件,我目前正在尝试实现我希望我的应用程序具有的所有不同功能。
import java.io.File;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;
import javafx.scene.web.WebEngine;
import javafx.scene.web.WebView;
import javafx.stage.Stage;
/**
*
* @author blj0011
*/
public class PDFToHTMLExampleApp extends Application
{
@Override
public void start(Stage primaryStage)
{
File file = new File("CookBook/index.html");
WebView webView = new WebView();
WebEngine webEngine = webView.getEngine();
webEngine.load(file.toURI().toString());
StackPane root = new StackPane();
root.getChildren().add(webView);
Scene scene = new Scene(root, 700, 1000);
primaryStage.setTitle("Hello World!");
primaryStage.setScene(scene);
primaryStage.show();
}
/**
* @param args the command line arguments
*/
public static void main(String[] args)
{
launch(args);
}
}
我选择这个网站进行转换而不是其他网站的原因是他们已经具有缩放功能和处理页面的功能。缺点是他们禁用了搜索功能。
我想要一个 pdf 文件显示到我的 javafx 应用程序中。到现在为止,我已经尝试了很多没有运气的事情,包括 pdf.js html pdf 查看器,但我遇到了以下异常:
Caused by: netscape.javascript.JSException: SyntaxError: Invalid character '\u8216'
有没有人知道任何更简单的方法,应该是免费和开源的。谢谢
我刚刚创建了一个应用程序,您可以查看。 Here. You could probably find a free application that converts PDF
to HTML
. This conversion was done using https://www.idrsolutions.com/online-pdf-to-html5-converter/。我个人使用 Acrobat Reader 来转换我的文件,我目前正在尝试实现我希望我的应用程序具有的所有不同功能。
import java.io.File;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;
import javafx.scene.web.WebEngine;
import javafx.scene.web.WebView;
import javafx.stage.Stage;
/**
*
* @author blj0011
*/
public class PDFToHTMLExampleApp extends Application
{
@Override
public void start(Stage primaryStage)
{
File file = new File("CookBook/index.html");
WebView webView = new WebView();
WebEngine webEngine = webView.getEngine();
webEngine.load(file.toURI().toString());
StackPane root = new StackPane();
root.getChildren().add(webView);
Scene scene = new Scene(root, 700, 1000);
primaryStage.setTitle("Hello World!");
primaryStage.setScene(scene);
primaryStage.show();
}
/**
* @param args the command line arguments
*/
public static void main(String[] args)
{
launch(args);
}
}
我选择这个网站进行转换而不是其他网站的原因是他们已经具有缩放功能和处理页面的功能。缺点是他们禁用了搜索功能。