How to Convert XML to JIRA Using Java
In order to render XML to JIRA, we’ll use
API which is a feature-rich, powerful and easy to use conversion 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-tasks</artifactId>
<version>version of aspose-tasks API</version>
<classifier>jdk17</classifier>
</dependency>
Steps to Convert XML to JIRA via Java
Developers can easily convert XML file to JIRA in just a few lines of code.
- Load XML file with Project class
- Call Project.save method
- Pass output file path & SaveFileFormat as parameters
System Requirements
Before running the conversion example 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.Tasks for Java directly from Maven.
XML to JIRA Java Conversion Source Code
// load the XML in an object of Project class | |
Project project = new Project("template.xml"); | |
// save XML as JPEG | |
project.save("output.jpeg", SaveFileFormat.JPEG); |
XML to JIRA Conversion Live Demos
Other Supported Conversions
You can also convert XML into many other file formats including few listed below.