Bulk Report Generation in TXT Format via Java
Generate reports in Microsoft Word TXT file using data source & a template.
How to Generate TXT Reports Using Java
In order to create TXT file reports, we’ll use
API which is a feature-rich, powerful and easy to use assembly API for Java platform. You can download its latest version directly from
and install it within your Maven-based project by adding the following configurations to the pom.xml.
Repository
<repository>
<id>AsposeJavaAPI</id>
<name>Aspose Java API</name>
<url>https://repository.aspose.com/repo/</url>
</repository>
Dependency
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-words</artifactId>
<version>version of aspose-words API</version>
<classifier>jdk17</classifier>
</dependency>
Steps to Generate TXT Reports via Java
- Load template in an instance of Document class
- Create an object of ReportingEngine
- Build report using Call engine.buildReport method
- 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 Java Runtime Environment for JSP/JSF Application and Desktop Applications.
- Get latest version of Aspose.Words for Java directly from Maven.
Generate Word Reports in TXT Format - C#
// Create Document object and initialize with TXT template.
Document txt = new Document("template.txt");
// Create Sender object.
Sender sender = new Sender("LINQ Reporting Engine", "Hello World");
// Create ReportingEngine object.
ReportingEngine engine = new ReportingEngine();
// Build report.
engine.buildReport(txt, sender, "s");
// Save as TXT document.
txt.save("word.txt");
Free App to Assemble TXT
Check our live demos to create TXT files with following benefits.
TXT What is TXT File Format
A file with .TXT extension represents a text document that contains plain text in the form of lines. Paragraphs in a text document are recognized by carriage returns and are used for better arrangement of file contents. A standard text document can be opened in any text editor or word processing application on different operating systems. All the text contained in such a file is in human-readable format and represented by sequence of characters.
Read MoreOther Supported Report Generation Formats
Using Java, one can easily generate reports of multiple formats including.