DataExportPackage
DataExportPackage is a .NET library that facilitates exporting data to various file formats such as JSON, Word, XML, Excel, CSV, and PDF.
Installation
You can install DataExportPackage via NuGet Package Manager:
Install-Package DataExportPackage
Usage
To use DataExportPackage, follow these steps:
-
Create an instance of the DataExporter
class by providing a list of dictionaries containing the data you want to export.
-
Call the appropriate method on the DataExporter
object to export the data to the desired file format.
Example
using System;
using System.Collections.Generic;
using System.IO;
using DataExportPackage;
class Program
{
static void Main(string[] args)
{
var data = new List<Dictionary<string, object>>()
{
new Dictionary<string, object> { {"name", "John"}, {"age", 30}, {"city", "New York"} },
new Dictionary<string, object> { {"name", "Alice"}, {"age", 25}, {"city", "Los Angeles"} },
new Dictionary<string, object> { {"name", "Bob"}, {"age", 35}, {"city", "Chicago"} }
};
string exportDirectory = @"C:\Users\YourUsername\Documents\Export";
Directory.CreateDirectory(exportDirectory);
var exporter = new DataExporter(data);
exporter.ToJson(Path.Combine(exportDirectory, "data.json"));
exporter.ToWord(Path.Combine(exportDirectory, "data.docx"));
exporter.ToXml(Path.Combine(exportDirectory, "data.xml"));
exporter.ToExcel(Path.Combine(exportDirectory, "data.xlsx"));
}
}
Addressing File Paths
When specifying the file path for export, make sure to provide the full path to the desired location on your file system. In the example above, replace "C:\Users\YourUsername\Documents\Export"
with the desired path where you want the exported files to be saved.
Contributing
Contributions to DataExportPackage are welcome! If you find any bugs, have feature requests, or want to contribute code, please open an issue or submit a pull request.
License
This project is licensed under the MIT License - see the LICENSE file for details.