DocumentCore dc = DocumentCore.Load(@"..\..\example.doc");
Объект dc представляет собой документ, загруженный в память. Формат файла определяется автоматически по расширению файла: «.doc».
После загрузки Вы получите документ, представленный в виде Tree Of Objects, где корневым узлом является класс DocumentCore.
Чтобы гарантировать, что загружаемый контент действительно является DOC, и установить некоторые параметры загрузки, используйте DocLoadOptions в качестве второго параметра.
DocumentCore dc = DocumentCore.Load(@"..\..\example.doc", new DocLoadOptions());
// Assume that we already have a DOC (Word 97-2003) document as bytes array.
byte[] fileBytes = File.ReadAllBytes(@"..\..\example.doc");
DocumentCore dc = null;
// Create a MemoryStream
using (MemoryStream ms = new MemoryStream(fileBytes))
{
// Load a document from the MemoryStream.
// Specifying DocLoadOptions we explicitly set that a loadable document is DOC.
dc = DocumentCore.Load(ms, new DocLoadOptions());
}
if (dc != null)
Console.WriteLine("Loaded successfully!");
Полный код
using System;
using System.IO;
using SautinSoft.Document;
namespace Example
{
class Program
{
static void Main(string[] args)
{
// Get your free 100-day key here:
// https://sautinsoft.com/start-for-free/
LoadDocFromFile();
//LoadDocFromStream();
}
/// <summary>
/// Loads a DOC (Word 97-2003) document into DocumentCore (dc) from a file.
/// </summary>
/// <remarks>
/// Details: https://www.sautinsoft.com/products/document/help/net/developer-guide/load-doc-word-97-2003-document-net-csharp-vb.php
/// </remarks>
static void LoadDocFromFile()
{
string filePath = @"..\..\..\example.doc";
// The file format is detected automatically from the file extension: ".doc".
// But as shown in the example below, we can specify DocLoadOptions as 2nd parameter
// to explicitly set that a loadable document has DOC format.
DocumentCore dc = DocumentCore.Load(filePath);
if (dc != null)
Console.WriteLine("Loaded successfully!");
Console.ReadKey();
}
/// <summary>
/// Loads a DOC (Word 97-2003) document into DocumentCore (dc) from a MemoryStream.
/// </summary>
/// <remarks>
/// Details: https://www.sautinsoft.com/products/document/help/net/developer-guide/load-doc-word-97-2003-document-net-csharp-vb.php
/// </remarks>
static void LoadDocFromStream()
{
// Assume that we already have a DOC (Word 97-2003) document as bytes array.
byte[] fileBytes = File.ReadAllBytes(@"..\..\..\example.doc");
DocumentCore dc = null;
// Create a MemoryStream
using (MemoryStream ms = new MemoryStream(fileBytes))
{
// Load a document from the MemoryStream.
// Specifying DocLoadOptions we explicitly set that a loadable document is DOC.
dc = DocumentCore.Load(ms, new DocLoadOptions());
}
if (dc != null)
Console.WriteLine("Loaded successfully!");
Console.ReadKey();
}
}
}
Imports System
Imports System.IO
Imports SautinSoft.Document
Module Sample
Sub Main()
LoadDocFromFile()
'LoadDocFromStream();
End Sub
''' Get your free 100-day key here:
''' https://sautinsoft.com/start-for-free/
''' <summary>
''' Loads a DOC (Word 97-2003) document into DocumentCore (dc) from a file.
''' </summary>
''' <remarks>
''' Details: https://www.sautinsoft.com/products/document/help/net/developer-guide/load-doc-word-97-2003-document-net-csharp-vb.php
''' </remarks>
Sub LoadDocFromFile()
Dim filePath As String = "..\..\..\example.doc"
' The file format is detected automatically from the file extension: ".doc".
' But as shown in the example below, we can specify DocLoadOptions as 2nd parameter
' to explicitly set that a loadable document has DOC format.
Dim dc As DocumentCore = DocumentCore.Load(filePath)
If dc IsNot Nothing Then
Console.WriteLine("Loaded successfully!")
End If
Console.ReadKey()
End Sub
''' <summary>
''' Loads a DOC (Word 97-2003) document into DocumentCore (dc) from a MemoryStream.
''' </summary>
''' <remarks>
''' Details: https://www.sautinsoft.com/products/document/help/net/developer-guide/load-doc-word-97-2003-document-net-csharp-vb.php
''' </remarks>
Sub LoadDocFromStream()
' Assume that we already have a DOC (Word 97-2003) document as bytes array.
Dim fileBytes() As Byte = File.ReadAllBytes("..\..\..\example.doc")
Dim dc As DocumentCore = Nothing
' Create a MemoryStream
Using ms As New MemoryStream(fileBytes)
' Load a document from the MemoryStream.
' Specifying DocLoadOptions we explicitly set that a loadable document is DOC.
dc = DocumentCore.Load(ms, New DocLoadOptions())
End Using
If dc IsNot Nothing Then
Console.WriteLine("Loaded successfully!")
End If
Console.ReadKey()
End Sub
End Module
Если вам нужен пример кода или у вас есть вопрос: напишите нам по адресу support@sautinsoft.ru или спросите в онлайн-чате (правый нижний угол этой страницы) или используйте форму ниже: