您可以使用 Aspose.Total for Android Java 包的兩個 API 在您的移動應用程序中集成 PS 到 DOCM 的轉換功能。首先,您需要使用 Aspose.PDF for Android via Java 將 PS 文件轉換為 DOC。其次,通過使用文字處理 API Aspose.Words for Android via Java ,您可以將 DOC 渲染為 DOCM。
通過 Java 在 Android 上將 PS 轉換為 DOCM
轉換要求
您可以直接從 Maven 通過 Java 輕鬆使用 Aspose.Total for Android 和安裝 Aspose.PDF for Android via Java 和 Aspose.Words for Android via Java 在您的應用程序中。
或者,您可以從 下載 獲取 ZIP 文件。
// load PS file with an instance of Document class
Document document = new Document("template.ps");
// save PS 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.DOCM
outputDocument.save("output.docm", SaveFormat.DOCM);
通過 Java 在 Android 上獲取 PS 文件信息
在將 PS 轉換為 DOCM 之前,您可能需要有關文檔的信息,包括作者、創建日期、關鍵字、修改日期、主題和標題。此信息有助於轉換過程的決策。使用強大的 Aspose.PDF for Android via Java API,您可以獲得所有內容。要獲取有關 PS 文件的文件特定信息,首先使用 getInfo 方法。一旦檢索到 DocumentInfo 對象,您就可以獲取各個屬性的值。
// load PS document
Document doc = new Document("template.ps");
// 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 中的 DOCM 文檔中插入尾註
除了文檔轉換,您還可以使用 Aspose.Words for Android via Java API 在您的 Android 應用程序中添加許多其他功能。該功能之一是在 DOCM 文檔中插入尾註和編號。如果要在 DOCM 文檔中插入腳註或尾註,請使用 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.docm", SaveFormat.DOCM);
使用 Android 探索 PS 轉換選項
什麼是 PS 文件格式
PS(PostScript)文件格式是由Adobe Systems 開發的一種頁面描述語言。它通常用於打印,並受到各種打印機和成像設備的支持。 PS 文件包含說明應如何在打印頁面上呈現文本、圖像和圖形等元素的說明。
PS 文件由生成 PostScript 輸出的應用程序創建,例如 Adobe Illustrator、Adobe InDesign 或其他圖形軟件。它們主要用於需要高質量和一致輸出的專業打印工作流程。
PS 文件格式基於基於堆棧的編程語言,其中命令和操作數放在堆棧上並執行以順序的方式。這允許精確控制頁面佈局、排版、顏色和其他打印參數。
PS 文件通常是基於文本的,可以使用文本編輯器打開和編輯。它們由一系列表示 PostScript 代碼的 ASCII 字符組成。該代碼描述了頁面上對象的排列和外觀,包括文本定位、圖像放置和圖形轉換。
雖然 PS 文件主要用於打印,但它們也可以轉換為其他格式以進行數字分發或進一步加工。例如,PS 文件可以轉換為 PDF(便攜式文檔格式)文件,這種文件受到廣泛支持,可以在各種設備上輕鬆查看和打印。
什麼是 DOCM 文件格式
DOCM 文件格式是 Microsoft Word 用來指示包含宏的文檔的擴展名。 Microsoft Word 是一種廣泛使用的文字處理程序,允許用戶創建和編輯各種類型的文檔。 Word 中的宏是可自動執行重複性任務、增強功能或向文檔添加自定義功能的小程序或腳本。
DOCM 文件中包含的宏使用戶能夠在其 Word 文檔中自動執行任務,例如執行複雜的任務計算、生成動態內容或應用特定格式。宏通常使用 Visual Basic for Applications (VBA) 編寫,這是一種集成到 Microsoft Office 應用程序中的編程語言。
通過使用宏,用戶可以簡化工作流程、節省時間並提高工作效率。他們可以創建個性化模板、自動設置文檔格式或開發適合其特定需求的自定義解決方案。用戶可以訪問和執行 DOCM 文件中的宏,從而在文檔中提供交互式和動態體驗。
請務必注意,DOCM 文件可能包含惡意宏,因為宏可用於執行有害操作或傳播惡意軟件。作為一項安全措施,Microsoft Word 應用各種安全設置來限制 DOCM 文件中宏的執行。當打開來自未知或不受信任來源的 DOCM 文件時,通常會提示用戶啟用或禁用宏。
DOCM 格式與 Microsoft Word 完全兼容,可以使用該應用程序打開、編輯和保存。但是,與其他文字處理軟件或舊版 Microsoft Word 的兼容性可能會有所不同。為確保跨不同平台的兼容性,建議將 DOCM 文件保存為其他格式,例如不支持宏的 DOCX。