Microsoft® Excel 格式转换 via .NET

将 Excel 文件导入和导出为电子表格、Web、图像和固定布局格式

 

.NET Excel 库可加快电子表格编程和转换过程,同时支持流行格式,包括 XLS、XLSX、XLSM、XLSB、XLTX、XLTM、CSV、SpreadsheetML、ODS。还允许将 Excel 文件导出到 PDF、XPS、HTML、MHTML、Plain文本和流行的图像格式,例如 TIFF、JPG、PNG、BMP 和 SVG。

将 Excel 转换为 XLSX、ODS、SXC 和 FODS

电子表格格式的相互转换只需要加载带有实例的电子表格 练习册 并以所需的格式保存,同时从中选择适当的值 保存格式 枚举。

C# Excel文件格式转换代码
// load the template file
var workbook = new Aspose.Cells.Workbook("template.xls");
// save as XLSX, ODS, SXC & FODS formats
workbook.Save("output.xlsx", Aspose.Cells.SaveFormat.Xlsx);
workbook.Save("output.ods", Aspose.Cells.SaveFormat.Ods);
workbook.Save("output.scx", Aspose.Cells.SaveFormat.Sxc);
workbook.Save("output.fods", Aspose.Cells.SaveFormat.Fods);
 

将 Excel 转换为 PDF、XPS、HTML 和 MD

专门的类可用于控制特定输出格式的转换过程,例如 Pdf保存选项 将 Excel 文件导出为 PDF, Xps保存选项 对于 Excel 到 XPS 的转换, Html保存选项 将 Excel 呈现为 HTML 和 Markdown保存选项 用于 Excel 到 Markdown 的转换。

C# Excel 代码到 PDF 和 Web 格式
// load template Excel file from disc
var book = new Aspose.Cells.Workbook("template.xlsx");
// save Excel in PDF/A-1a format
book.Save("output.pdf", new Aspose.Cells.PdfSaveOptions() { Compliance = PdfComplianceVersion.PdfA1a });
// save Excel in XPS with 1 page per worksheet
book.Save("output.xps", new Aspose.Cells.XpsSaveOptions() { OnePagePerSheet = true });
// save Excel in HTML with images as Base64
book.Save("output.html", new Aspose.Cells.HtmlSaveOptions() { ExportImagesAsBase64 = true });
// save Excel in Markdown (MD) while retaining cell formatting
book.Save("output.md", new Aspose.Cells.MarkdownSaveOptions() { FormatStrategy = Cells.CellValueFormatStrategy.CellStyle });
 

将 JSON 转换为 Excel & Excel 为 JSON

JSON 数据可以导入到实例中 Cells 类的帮助下 JsonUtility.ImportData 用于进一步处理或简单转换为任何支持的格式。相似地, 工作表 数据可以通过创建一个导出为JSON 范围 或细胞并调用 JsonUtility.ExportRangeToJson 方法。

C# JSON 到 Excel 转换的代码
// create a Workbook object
var workbook = new Cells.Workbook();
var worksheet = workbook.Worksheets[0];
// read JSON data from file
string jsonInput = File.ReadAllText("Data.json");
// set JsonLayoutOptions to treat Arrays as Table
var options = new Cells.Utility.JsonLayoutOptions();
options.ArrayAsTable = true;
// import JSON data to worksheet starting at cell A1
Cells.Utility.JsonUtility.ImportData(jsonInput, worksheet.Cells, 0, 0, options);
// save resultant file in XLSX format
workbook.Save("output.xlsx", Cells.SaveFormat.Auto); 
C# Excel 代码到 JSON 转换
// load XLSX file with an instance of Workbook
var workbook = new Workbook("template.xlsx", new LoadOptions(Cells.LoadFormat.Auto));
// access CellsCollection of the worksheet containing data to be converted
var cells = workbook.Worksheets[0].Cells;
// create & set ExportRangeToJsonOptions for advanced options
var exportOptions = new Utility.ExportRangeToJsonOptions();
// create a range of cells containing data to be exported
var range = cells.CreateRange(0, 0, cells.LastCell.Row + 1, cells.LastCell.Column + 1);
// export range as JSON data
string jsonData = Cells.Utility.JsonUtility.ExportRangeToJson(range, exportOptions);
// write data file to disc in JSON format
System.IO.File.WriteAllText("output.json", jsonData); 
 

将 Excel 工作表转换为 JPG、BMP、PNG 和 GIF

Excel文件的每个工作表都可以转换为由设置的不同图像格式 ImageOrPrintOptions.ImageType 财产。默认值为 ImageFormat.Bmp

C# Excel 到图像转换的代码
// load template spreadsheet
var workbook = new Aspose.Cells.Workbook("template.xlsx");
// create & set an instance of ImageOrPrintOptions
var options = new Aspose.Cells.Rendering.ImageOrPrintOptions();
options.OnePagePerSheet = true;
// set output image format
options.ImageType = Aspose.Cells.Drawing.ImageType.Jpeg;
// create SheetRender for first worksheet in the collection
var render = new Aspose.Cells.Rendering.SheetRender(workbook.Worksheets[0], options);
// render worksheet to image
render.ToImage(0, "output.jpg");
 

将 Excel 转换为 Word & PowerPoint

使用时可以加载任何电子表格并将其转换为 Word DOCX 和 PowerPoint PPTX 文件 Docx保存选项 & Pptx保存选项 类如下所示。

C# Excel 到 Word 代码 & PowerPoint 转换
// load the template file
var workbook = new Aspose.Cells.Workbook("template.xlsx");
// save spreadsheet as DOCX
workbook.Save("output.docx", new Aspose.Cells.DocxSaveOptions());
// save spreadsheet as PPTX
workbook.Save("output.pptx", new Aspose.Cells.PptxSaveOptions());