我有一个使用OpenXML从Datatable创建新Excel文件的代码。创建完该文件后,我想为用户打开它但不保存它。基本上,Excel在这种情况下的作用是将excel文件打开为“ Workbook1”,然后如果您希望手动将其保存。我有这个要求,因为用户想在将文件保存到磁盘之前检查数据是否对应。
这可以在Interop by Visibility属性中完成(我已经准备好了此解决方案,但是问题是Interop在处理大量数据时非常慢,因此用户对其不满意),但是我找不到解决方法在OpenXML中也是如此。如果有人有任何建议,请告诉我。这是我用于创建Excel文件的代码:
public void Export_To_Excel_stream(MemoryStream ms, DataTable dt)
{
using (SpreadsheetDocument dokument = SpreadsheetDocument.Create(ms, SpreadsheetDocumentType.Workbook))
{
WorkbookPart workbookPart = dokument.AddWorkbookPart();
workbookPart.Workbook = new Workbook();
WorksheetPart worksheetPart = workbookPart.AddNewPart<WorksheetPart>();
var sheetData = new SheetData();
worksheetPart.Worksheet = new Worksheet(sheetData);
Sheets sheets = workbookPart.Workbook.AppendChild(new Sheets());
Sheet sheet = new Sheet() { Id = workbookPart.GetIdOfPart(worksheetPart), SheetId = 1, Name = dt.TableName };
sheets.Append(sheet);
//header row
Row header = new Row();
List<String> Cols = new List<string>();
foreach (DataColumn col in dt.Columns)
{
Cols.Add(col.ColumnName);
Cell cell = new Cell
{
DataType = CellValues.String,
CellValue = new CellValue(col.ColumnName)
};
header.AppendChild(cell);
}
sheetData.AppendChild(header);
foreach (DataRow row in dt.Rows)
{
Row new_row = new Row();
foreach (String col in Cols)
{
Cell cell = new Cell
{
DataType = CellValues.String,
CellValue = new CellValue(row[col].ToString())
};
new_row.AppendChild(cell);
}
sheetData.AppendChild(new_row);
}
workbookPart.Workbook.Save();
}
答案 0 :(得分:0)
我发现最好的办法是打开Excel文件作为进程,然后在进程结束时将其删除。但是,我的OpenXML代码是.dll,因此当我用所有已打开的Excel文件关闭应用程序时,它不再自动删除:
public string file_path;
public void Export_To_Excel_stream(MemoryStream ms, DataTable dt)
{
//...at the end, whe OPENXML file is created..
var open_Excel = Process.Start(file_path);
open_Excel.EnableRaisingEvents = true;
open_Excel.Exited += new EventHandler(open_excel_Exited);
}
public void open_excel_Exited(object sender, EventArgs e)
{
File.Delete(file_path);
}
如果有人有更好的解决方案,我会非常高兴:)