中國傳統的

將字(DOC、DOCX)轉換為字節數組

Aspose.Words API 提供了將 Microsoft Word DOC 或 DOCX 文檔轉換為 C# 和 Java 字節數組的最簡單方法。 在數據庫中存儲文檔和/或從數據庫中檢索文檔時,將 Word 文檔轉換為字節數組很有用。 Aspose.Words API 提供了無需使用 Microsoft Word 即可操作 Microsoft Word 文件的功能。如果您沒有安裝 Aspose.Words API,請按照 .NET 安裝 頁面和用於 Java 的 安裝 頁面給出的說明進行操作。 使用 C# 將 Word 文檔轉換為字節數組 Aspose.Words for .NET 可用於轉換 Document 對像以獲得表示任何 .NET 應用程序中的 Document 的字節數組。 以下代碼片段演示了將 DOC 文件轉換為字節數組。 // Load the document from disk. Document doc = new Document("Sample.doc"); // Create a new memory stream. MemoryStream outStream = new MemoryStream(); // Save the document to stream.
12月 9, 2019 · 2 min · 穆扎米爾汗