如何使用 IronPdfEngine
IronPdfEngine 是一个 gRPC 服务器,用于管理各种 IronPDF 操作,包括创建、编写、编辑和读取 PDF。
如何将 IronPdfEngine 用作远程服务器
- 安装 Java 库以使用 IronPdfEngine
- 在 pom.xml 文件中加入程序库
- 使用 setIronPdfEngineHost 方法配置主机
- 利用 setIronPdfEnginePort 方法配置端口
- 使用 IronPdfEngine 将 HTML 渲染为 PDF,其渲染器与 Chrome 浏览器相同
IronPDF for Java 和 IronPdfEngine
IronPDF for Java 需要 IronPdfEngine才能运行。Java 代码只是 IronPdfEngine gRPC 的 API 屏蔽。因此,当你调用 IronPDF for Java 中的任何方法时,魔法将在 IronPdfEngine 中发生。!
默认情况下,IronPdf for Java 会生成 IronPdfEngine 作为子进程,并与之对话,直到应用程序关闭。
请注意
使用本地 IronPdfEngine 的 Java 版 IronPdf
选项 1 在运行时下载 IronPdfEngine
默认情况下,在您的 Java 项目中安装 IronPdf 后,第一次运行时,IronPdf 会检测您的平台 (例如,Windows x64) 并从互联网上下载正确的 IronPdfEngine 二进制文件。
<dependency>
<groupId>com.ironsoftware</groupId>
<artifactId>ironpdf</artifactId>
<version>20xx.xx.xx</version>
</dependency>
优点
- 您的申请文件包很小。
- 可在多种平台上部署
缺点
- 首次运行需要上网
- 启动时间慢
选项 2 (推荐) 将 IronPdfEngine 作为依赖安装
IronPdf Java 允许你添加 IronPdfEngine 作为依赖。这些 IronPdfEngine 依赖项会将 IronPdfEngine 捆绑到 .zip 文件中,并自动解压缩和使用。
你可以选择安装一个或多个 IronPdfEngine 依赖项。
请注意
ironpdf-engine-xxx-xxx`依赖版本并不是指内部 IronPdfEngine 的版本。
适用于 Windows x64
<dependency>
<groupId>com.ironsoftware</groupId>
<artifactId>ironpdf-engine-windows-x64</artifactId>
<version>20xx.xx.xxxx</version>
</dependency>
适用于 Windows x86
<dependency>
<groupId>com.ironsoftware</groupId>
<artifactId>ironpdf-engine-windows-x86</artifactId>
<version>20xx.xx.xxxx</version>
</dependency>
适用于 Linux x64
<dependency>
<groupId>com.ironsoftware</groupId>
<artifactId>ironpdf-engine-linux-x64</artifactId>
<version>20xx.xx.xxxx</version>
</dependency>
适用于 macOS x64
<dependency>
<groupId>com.ironsoftware</groupId>
<artifactId>ironpdf-engine-macos-x64</artifactId>
<version>20xx.xx.xxxx</version>
</dependency>
用于 macOS arm
<dependency>
<groupId>com.ironsoftware</groupId>
<artifactId>ironpdf-engine-macos-arm64</artifactId>
<version>20xx.xx.xxxx</version>
</dependency>
请注意
优点
- 更快的启动时间。
- 安装依赖项后无需访问互联网。
缺点
- 申请材料会比较多。
- 需要指定目标平台。
使用远程 IronPdfEngine 的 IronPdf for Java
要使用远程 IronPdfEngine,需要特定版本的 IronPdfEngine。例如,IronPdf for Java 版本 2024.2.2 需要 IronPdfEngine 版本 2024.2.2。请勿使用 IronPdfEngine 2024.2.1 版。使用 getIronPdfEngineVersion
方法检查所需的版本。
String ironPdfEngineVersion = Settings.getIronPdfEngineVersion();
如何连接
假设 IronPdfEngine 已在 123.456.7.8:33350
上远程运行。
[{i:(要远程运行 IronPdfEngine,请参阅"如何拉动和运行 IronPdfEngine.")}]
你只需告诉 IronPdf IronPdfEngine 的位置 (请确保可以访问该地址,而不是被防火墙阻挡).
在应用程序的初始阶段添加以下代码 (或在调用任何 IronPdf 方法之前).
com.ironsoftware.ironpdf.Settings.setIronPdfEngineHost("123.456.7.8");
com.ironsoftware.ironpdf.Settings.setIronPdfEnginePort(33350);
就这么简单! 之后,你的应用程序将连接到远程 IronPdfEngine!
对于远程 IronPdfEngine,无需将 IronPdfEngine 作为依赖安装。您可以跳过标题为"方案 2(推荐)将 IronPdfEngine 作为依赖项安装."