DEV Community

Sheeraz Ahmed Memon
Sheeraz Ahmed Memon

Posted on • Originally published at sheerazmemon.com

How to Parse XML using Kotlin in 2021

Introduction:

In 2021, Lots of APIs are written using JSON. But there are some API in some domains like healthcare, traveling and web streaming that return XML. XML is a terrible serialization format, it wasn’t initially, but has been misused for decades and abused by many a software development engineer out in the wild.

When you want to interact with one of these XML, you might cry or shake your fist initially.

But no more.

We can now use Simple XML library in Kotlin that does the heavy load, parses XML and gives the POJO (Plain old java object) magically.

Steps:

So here is the XML we will use in this example, and parse it

  1. First add Simple XML library in Gradle.
  1. Now let's create POJO’s
  1. Now that POJO’s are created, we can parse it using the following code

val serializer: Serializer = Persister() val dataFetch = serializer.read(DataFetch::class.java, xmlToParse)

  1. Easy, right, here is a test to check the parsing.

Top comments (0)