Bulk Report Generation in ODT Format via C#
Generate reports in ODT format using data source & a template.
How to Generate ODT based Reports Using C#
In order to create ODT reports, we’ll use
API which is a feature-rich, powerful and easy to use report generation API for C# platform. Open
package manager, search for Aspose.Words and install. You may also use the following command from the Package Manager Console.
Package Manager Console Command
PM> Install-Package Aspose.Words
Steps to Assemble ODT via C#
- Load template in an instance of Document class
- Create an object of ReportingEngine
- Set engine options
- Call ReportingEngine.BuildReport method
- Pass the template, data source as perameters
- Save the result with Doucment.Save method
System Requirements
Before integrating the code, make sure that you have the following prerequisites.
- Microsoft Windows or a compatible OS with .NET Framework, .NET Core, Windows Azure, Mono or Xamarin Platforms
- Development environment like Microsoft Visual Studio
- Aspose.Words for .NET referenced in your project
Generate ODT Reports using C# example code
// build data source
var xml = JsonConvert.DeserializeXmlNode(File.ReadAllText("filenameDocx"), "RootElement");
var dataSet = new DataSet("datasourceName");
dataSet.ReadXml(new MemoryStream(Encoding.UTF8.GetBytes(xml.InnerXml)));
var dataTable = dataSet.Tables["datasourceName"];
// load template for report
var doc = new Document("template.odt");
// create ReportingEngine
var engine = new Reporting.ReportingEngine
{
// set appropriate options
Options = Reporting.ReportBuildOptions.AllowMissingMembers
};
// build report using template & data source
engine.BuildReport(doc, dataTable, "datasourceName");
// save the report
doc.Save("output.odt", SaveFormat.Doc);
Free App to Assemble ODT
Check our live demos to create ODT files with following benefits.
ODT What is ODT File Format
ODT files are type of documents created with word processing applications that are based on OpenDocument Text File format. These are created with word processor applications such as free OpenOffice Writer and can hold content such as text, images, objects and styles. The ODT file is to Writer word processor what the DOCX is to Microsoft Word. Several applications including Google Docs and Google's web-based word processor included with Google Drive can open the ODT files for editing. Microsoft Word can also open ODT files and save it in to other formats such as DOC and DOCX.
Read MoreOther Supported Report Generation Formats
Using C#, one can easily generate reports of multiple formats including.