XMLをPDFに変換

XML形式は構造化データを保存するために使用されます。Aspose.PDFでは、XMLをPDFに変換するいくつかの方法があります。

XSL-FO標準に基づいたXMLドキュメントを使用するオプションを考慮してください。

XSL-FOをPDFに変換

XSL-FOファイルのPDFへの変換は、DocumentオブジェクトとXslFoLoadOptionsを使用して実装できますが、時には不正なファイル構造に遭遇することもあります。

// XMLをPDFに変換 public void convertXMLtoPDF() { // ドキュメントオブジェクトを初期化 String pdfDocumentFileName = new File(fileStorage,“XML-to-PDF.pdf”).toString(); String xmlDocumentFileName = new File(fileStorage,“Conversion/employees.xml”).toString(); String xsltDocumentFileName = new File(fileStorage, “Conversion/employees.xslt”).toString();

    try {
        XslFoLoadOptions options = new XslFoLoadOptions(xsltDocumentFileName);
        document = new Document(xmlDocumentFileName,options);
        // 結果のPDFファイルを保存
        document.save(pdfDocumentFileName.toString());
    } catch (Exception e) {
        resultMessage.setText(e.getMessage());
        return;
    }
    resultMessage.setText(R.string.success_message);
}    
```