有什麼辦法將我有一些表格的Word文檔轉換爲Excel文件? 轉換表格會很有幫助。使用OpenXML將Word docx轉換爲Excel
類似的東西:使用OpenXML的
- 打開Word文檔
- 創建Excel文件
- 插入XML標籤與表從Word到新Excel文件
我的意思是
void OpenWordDoc(string filePath)
{
_documentWord = SpreadsheetDocument.Open(filePath, true);
}
List<string> GetAllTablesXMLTags()
{
//find and copy
}
List<string> CreateExcelFile(string filePath)
{
TemplateExcelDocument excelDocument = new TemplateExcelDocument();
_documentExcel = excelDocument.CreatePackage(filePath);
}
void InsertXmlTagsToExcelFile(string filePath)
{
CreateExcelFiles(filePath);
var xmlTable = GetAllTablesXMLTags();
// ... insert to _documentExcel
}
不幸的是,我需要類似的功能,但使用OpenXML – 2013-05-22 08:35:08