要在C#中查看DOCX文件的內容,您可以使用OpenXML
庫。這是一個簡單的示例,說明如何讀取DOCX文件的文本內容:
首先,安裝DocumentFormat.OpenXml
庫。在Visual Studio中,打開“NuGet包管理器”并搜索“DocumentFormat.OpenXml”。將其添加到項目中。
然后,使用以下代碼讀取DOCX文件的文本內容:
using System;
using System.IO;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Wordprocessing;
namespace ReadDocxFileContent
{
class Program
{
static void Main(string[] args)
{
string filePath = @"C:\path\to\your\docx\file.docx";
string content = ReadDocxFileContent(filePath);
Console.WriteLine("Content of the DOCX file:");
Console.WriteLine(content);
}
public static string ReadDocxFileContent(string filePath)
{
if (!File.Exists(filePath))
{
throw new FileNotFoundException("The file does not exist.", filePath);
}
StringBuilder contentBuilder = new StringBuilder();
using (WordprocessingDocument wordDoc = WordprocessingDocument.Open(filePath, false))
{
Body body = wordDoc.MainDocumentPart.Document.Body;
foreach (var element in body.Elements())
{
if (element is Paragraph paragraph)
{
foreach (var run in paragraph.Elements<Run>())
{
foreach (var text in run.Elements<Text>())
{
contentBuilder.Append(text.Text);
}
}
}
}
}
return contentBuilder.ToString();
}
}
}
將filePath
變量更改為您要讀取的DOCX文件的路徑。運行此代碼后,控制臺將顯示DOCX文件的文本內容。