通過 Java 在 Android 上將 EPUB 渲染到 DOTX

在移動應用程序中將 EPUB 轉換為 DOTX,無需安裝任何軟件

 

您可以使用 Aspose.Total for Android Java 包的兩個 API 在您的移動應用程序中集成 EPUB 到 DOTX 的轉換功能。首先,您需要使用 Aspose.PDF for Android via Java 將 EPUB 文件轉換為 DOC。其次,通過使用文字處理 API Aspose.Words for Android via Java ,您可以將 DOC 渲染為 DOTX。

通過 Java 在 Android 上將 EPUB 轉換為 DOTX

  1. Document 類打開EPUB文件
  2. 使用 save 將 EPUB 轉換為 DOC ) 方法
  3. 使用 Aspose.Words 的 Document 類加載 DOC 文件
  4. 使用 save 方法將文檔保存為 DOTX 格式並設置 DOTX保存格式

轉換要求

您可以直接從 Maven 通過 Java 輕鬆使用 Aspose.Total for Android 和安裝 Aspose.PDF for Android via JavaAspose.Words for Android via Java 在您的應用程序中。

或者,您可以從 下載 獲取 ZIP 文件。

// load EPUB file with an instance of Document class
Document document = new Document("template.epub");
// save EPUB 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.DOTX
outputDocument.save("output.dotx", SaveFormat.DOTX);   

通過 Java 在 Android 上獲取 EPUB 文件信息

在將 EPUB 轉換為 DOTX 之前,您可能需要有關文檔的信息,包括作者、創建日期、關鍵字、修改日期、主題和標題。此信息有助於轉換過程的決策。使用強大的 Aspose.PDF for Android via Java API,您可以獲得所有內容。要獲取有關 EPUB 文件的文件特定信息,首先使用 getInfo 方法。一旦檢索到 DocumentInfo 對象,您就可以獲取各個屬性的值。

// load EPUB document
Document doc = new Document("template.epub");
// 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());

通過 Java 在 Android 中的 DOTX 文檔中插入尾註

除了文檔轉換,您還可以使用 Aspose.Words for Android via Java API 在您的 Android 應用程序中添加許多其他功能。該功能之一是在 DOTX 文檔中插入尾註和編號。如果要在 DOTX 文檔中插入腳註或尾註,請使用 DocumentBuilder.InsertFootnote 方法。此方法在文檔中插入腳註或尾註。 EndnoteOptions 和 FootnoteOptions 類表示腳註和尾註的編號選項。

// 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.dotx", SaveFormat.DOTX);  

使用 Android 探索 EPUB 轉換選項

將 EPUB 轉換為 ODP (OpenDocument 演示文稿格式)
將 EPUB 轉換為 OTP (OpenDocument 標準格式)
將 EPUB 轉換為 POT (Microsoft PowerPoint 模板文件)
將 EPUB 轉換為 POTM (微軟 PowerPoint 模板文件)
將 EPUB 轉換為 POTX (Microsoft PowerPoint 模板演示)
將 EPUB 轉換為 PPT (PowerPoint演示文稿)
將 EPUB 轉換為 PPS (PowerPoint 幻燈片放映)
將 EPUB 轉換為 PPSM (啟用宏的幻燈片放映)
將 EPUB 轉換為 PPSX (PowerPoint 幻燈片放映)
將 EPUB 轉換為 PPT (PowerPoint演示文稿)
將 EPUB 轉換為 PPTM (啟用宏的演示文稿文件)
將 EPUB 轉換為 SWF (衝擊波動畫)
將 EPUB 轉換為 DOCM (Microsoft Word 2007 宏文件)
將 EPUB 轉換為 DOT (Microsoft Word 模板文件)
將 EPUB 轉換為 DOTM (Microsoft Word 2007+ 模板文件)
將 EPUB 轉換為 FLATOPC (Microsoft Word 2003 文字處理ML)
將 EPUB 轉換為 GIF (圖形交換格式)
將 EPUB 轉換為 MARKDOWN (輕量級標記語言)
將 EPUB 轉換為 ODT (OpenDocument 文本文件格式)
將 EPUB 轉換為 OTT (打開文檔模板)
將 EPUB 轉換為 PCL (打印機命令語言)
將 EPUB 轉換為 PS (後記文件)
將 EPUB 轉換為 RTF (富文本格式)
將 EPUB 轉換為 WORDML (Microsoft Word 2003 文字處理ML)
將 EPUB 轉換為 XAMLFLOW (微軟的 Power Automate)
將 EPUB 轉換為 CSV (逗號分隔值)
將 EPUB 轉換為 DIF (數據交換格式)
將 EPUB 轉換為 CSV (逗號分隔值)
將 EPUB 轉換為 FODS (OpenDocument 平面 XML 電子表格)
將 EPUB 轉換為 MD (降價語言)
將 EPUB 轉換為 ODS (OpenDocument電子表格)
將 EPUB 轉換為 SXC (StarSuite Calc 電子表格)
將 EPUB 轉換為 TSV (製表符分隔值)
將 EPUB 轉換為 TXT (文本文件)
將 EPUB 轉換為 XLAM (Excel 啟用宏的加載項)
將 EPUB 轉換為 XLSB (Excel 二進制工作簿)
將 EPUB 轉換為 XLSM (啟用宏的電子表格)
將 EPUB 轉換為 XLT (Excel 97 - 2003 模板)

什麼是 EPUB 文件格式

EPUB 文件是一個打開的電子書文件。該格式由國際數字出版論壇 (IDPF) 開發,基於 XML 和 XHTML。 EPUB 文件可以在各種電子設備上閱讀,包括電子閱讀器、平板電腦和智能手機。 EPUB 文件通常由三個部分組成:1。書脊,其中包含本書的正文和閱讀頁面的順序。 2。一份清單,其中列出了構成本書的所有文件,包括書脊、封面圖像和任何其他內容。3。一個容器,以壓縮格式存儲文件。 EPUB 文件可以使用多種軟件程序創建,包括 Adobe InDesign、Sigil 和 Calibre。

什麼是 DOTX 文件格式

DOTX 文件格式是 Microsoft Word 用來存儲文檔模板的文件擴展名。它是 DOCX 格式的變體,基於 Open XML 文件標準。 DOTX 文件用作可重複使用的模板,其中包含用於創建新文檔的預定義格式、樣式和內容。

當在 Microsoft Word 或兼容的文字處理程序中打開 DOTX 模板時,它會根據模板。模板的格式、樣式和其他設計元素將應用於新文檔,從而在格式和佈局方面提供一致性並節省時間。然後,用戶可以自定義內容,同時保持模板的預定義結構。

DOTX 文件在創建具有一致品牌標識的文檔(如信頭、發票或報告)時特別有用。它們允許組織在其文檔中建立統一的外觀,並確保遵守公司標準。

要創建 DOTX 文件,您可以先在 Microsoft Word 或任何其他支持 DOTX 的程序中設計文檔模板打開 XML 格式。模板完成後,您可以將其另存為 DOTX 文件。這使您可以在未來的文檔中重複使用該模板,確保一致性並簡化文檔創建過程。

在處理 DOTX 文件時,請務必注意,它們不像 DOTM 對應文件那樣包含任何宏或腳本功能. DOTX 文件只專注於文檔格式和結構,使其適用於不需要宏或自定義編程的情況。