Bạn có thể tích hợp tính năng chuyển đổi XPS sang OTT trong ứng dụng dành cho thiết bị di động của mình bằng cách sử dụng hai API của gói Aspose.Total for Android via Java . Trước tiên, bạn cần chuyển đổi tệp XPS sang DOC bằng Aspose.PDF for Android via Java . Thứ hai, bằng cách sử dụng API xử lý văn bản Aspose.Words for Android via Java , bạn có thể kết xuất DOC thành OTT.
Chuyển đổi XPS sang OTT trên Android qua Java
Yêu cầu chuyển đổi
Bạn có thể dễ dàng sử dụng Aspose.Total for Android via Java trực tiếp từ Maven và cài đặt Aspose.PDF for Android via Java và Aspose.Words for Android via Java trong các ứng dụng của bạn.
Ngoài ra, bạn có thể tải tệp ZIP từ download .
// load XPS file with an instance of Document class
Document document = new Document("template.xps");
// save XPS as a DOC
document.save("DocOutput.doc", SaveFormat.DOC);
// load DOC with an instance of Document
Document outputDocument = new com.aspose.words.Document("DocOutput.doc");
// call save method while passing SaveFormat.OTT
outputDocument.save("output.ott", SaveFormat.OTT);
Nhận thông tin tệp XPS trên Android qua Java
Trước khi chuyển đổi XPS sang OTT, bạn có thể cần thông tin về tài liệu bao gồm tác giả, ngày tạo, từ khóa, ngày sửa đổi, chủ đề và tiêu đề. Thông tin này rất hữu ích cho việc đưa ra quyết định cho quá trình chuyển đổi. Bằng cách sử dụng API Aspose.PDF for Android via Java mạnh mẽ, bạn có thể nhận được tất cả. Để nhận thông tin cụ thể về tệp về tệp XPS, trước tiên hãy lấy đối tượng DocumentInfo bằng cách sử dụng đối tượng [getInfo](https: // phương thức reference.aspose.com/pdf/java/com.aspose.pdf/Document#getInfo–). Khi đối tượng DocumentInfo được truy xuất, bạn có thể nhận các giá trị của các thuộc tính riêng lẻ.
// load XPS document
Document doc = new Document("template.xps");
// get document information
DocumentInfo docInfo = doc.getInfo();
// show document information
System.out.println("Author: " + docInfo.getAuthor());
System.out.println("Creation Date: " + docInfo.getCreationDate());
System.out.println("Keywords: " + docInfo.getKeywords());
System.out.println("Modify Date: " + docInfo.getModDate());
System.out.println("Subject: " + docInfo.getSubject());
System.out.println("Title: " + docInfo.getTitle());
Chèn chú thích vào tài liệu OTT trong Android qua Java
Ngoài chuyển đổi tài liệu, bạn cũng có thể thêm một loạt các tính năng khác bên trong Ứng dụng Android của mình bằng cách sử dụng API Aspose.Words for Android via Java . Một trong những tính năng đó là chèn chú thích cuối và đánh số trong tài liệu OTT. Nếu bạn muốn chèn chú thích cuối trang hoặc chú thích cuối vào tài liệu OTT, vui lòng sử dụng phương thức DocumentBuilder.InsertFootnote. Phương pháp này chèn chú thích cuối trang hoặc chú thích cuối vào tài liệu. Các lớp EndnoteOptions và FootnoteOptions đại diện cho các tùy chọn đánh số cho footnote và endnote.
// load document
Document doc = new Document("input.DOC");
// initialize document builder
DocumentBuilder builder = new DocumentBuilder(doc);
// add text in it
builder.write("Some text");
// insert footnote
builder.insertFootnote(FootnoteType.ENDNOTE, "Endnote text.");
// initialize endnote options
EndnoteOptions option = doc.getEndnoteOptions();
// set restart rule
option.setRestartRule(FootnoteNumberingRule.RESTART_PAGE);
// set position
option.setPosition(EndnotePosition.END_OF_SECTION);
// save the document to disk.
doc.save("output.ott", SaveFormat.OTT);