تحويل XML إلى PDF
Contents
[
Hide
]
جرب عبر الإنترنت. يمكنك التحقق من جودة تحويل Aspose.PDF وعرض النتائج عبر الإنترنت على هذا الرابط products.aspose.app/pdf/conversion/xml-to-pdf
يُستخدم تنسيق XML لتخزين البيانات المهيكلة. هناك عدة طرق لتحويل XML إلى PDF في Aspose.PDF.
اعتبر الخيار باستخدام مستند XML بناءً على معيار XSL-FO.
تحويل 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);
}
```