Max*_*sky 5 c# api office-2007 ms-word ms-office
我需要解析大量的Word文档.由于它们都是从同一个模板创建的,我认为最好的方法是将它们保存为HTML文件并解析HTML本身.
虽然将单个Word文档保存为HTML非常容易,但我还没有找到从Word内部执行批量过程的方法.因此,我试图找到一种方法来利用Microsoft Office/Word API来实现这一目标.
如何使用Word API将许多Word文档另存为HTML?
提前致谢.
更新:更多细节......
有些文件是扩展的.doc,有些则是.docx.我希望这不是问题,但如果是,我只需要将它们全部转换为.docx,希望使用API或DocX.
说到DocX,我在作者的博客上看到,可以.docx使用以下代码将文件保存为HTML:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Word = Microsoft.Office.Interop.Word;
using Microsoft.Office.Interop.Word;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
// Convert Input.docx into Output.doc
Convert(@"C:\users\cathal\Desktop\Input.docx", @"c:\users\cathal\Desktop\Output.doc", WdSaveFormat.wdFormatDocument);
/*
* Convert Input.docx into Output.pdf
* Please note: You must have the Microsoft Office 2007 Add-in: Microsoft Save as PDF or XPS installed
* http://www.microsoft.com/downloads/details.aspx?FamilyId=4D951911-3E7E-4AE6-B059-A2E79ED87041&displaylang=en
*/
Convert(@"c:\users\cathal\Desktop\Input.docx", @"c:\users\cathal\Desktop\Output.pdf", WdSaveFormat.wdFormatPDF);
// Convert Input.docx into Output.html
Convert(@"c:\users\cathal\Desktop\Input.docx", @"c:\users\cathal\Desktop\Output.html", WdSaveFormat.wdFormatHTML);
}
// Convert a Word 2008 .docx to Word 2003 .doc
public static void Convert(string input, string output, WdSaveFormat format)
{
// Create an instance of Word.exe
Word._Application oWord = new Word.Application();
// Make this instance of word invisible (Can still see it in the taskmgr).
oWord.Visible = false;
// Interop requires objects.
object oMissing = System.Reflection.Missing.Value;
object isVisible = true;
object readOnly = false;
object oInput = input;
object oOutput = output;
object oFormat = format;
// Load a document into our instance of word.exe
Word._Document oDoc = oWord.Documents.Open(ref oInput, ref oMissing, ref readOnly, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref isVisible, ref oMissing, ref oMissing, ref oMissing, ref oMissing);
// Make this document the active document.
oDoc.Activate();
// Save this document in Word 2003 format.
oDoc.SaveAs(ref oOutput, ref oFormat, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing);
// Always close Word.exe.
oWord.Quit(ref oMissing, ref oMissing, ref oMissing);
}
}
}
Run Code Online (Sandbox Code Playgroud)
这是最好的方法吗?
您上面发布的代码应该适合您。据我所知,Document.SaveAs Api 可以将任何可以在 Word 中打开的文档(docx、doc、rtf)转换为 HTML(或任何其他格式)
另外,不要为每个文件创建一个 Word 应用程序实例,而是将名称的 string[] 传递给转换 api,并且仅在完成另存为后才处理文档实例
| 归档时间: |
|
| 查看次数: |
5442 次 |
| 最近记录: |