在實時環境中測試
在生產環境中測試,無浮水印。
無論您需要在哪裡工作。
Get your free 30-day Trial Key instantly.
在生產環境中測試,無浮水印。
無論您需要在哪裡工作。
獲得30天的全功能產品。
即可在幾分鐘內運行。
在您的產品試用期間,我們的支援工程團隊將提供全面存取
import com.ironsoftware.ironpdf.*;
import java.io.IOException;
import java.nio.file.Paths;
// Apply your license key
License.setLicenseKey("YOUR-LICENSE-KEY");
// Set a log path
Settings.setLogPath(Paths.get("C:/tmp/IronPdfEngine.log"));
// Render the HTML as a PDF. Stored in myPdf as type PdfDocument;
PdfDocument myPdf = PdfDocument.renderHtmlAsPdf("<h1> ~Hello World~ </h1> Made with IronPDF!");
// Save the PdfDocument to a file
myPdf.saveAs(Paths.get("html_saved.pdf"));