any recommended xml parsing library for kotlin?
# getting-started
b
any recommended xml parsing library for kotlin?
n
depending on your use-case, i’d use standard dom/sax/stax(?) if you want de/serialization, then i’d go for jackson or xstream
👍 1
b
I have a really basic xml file, just want to get some data out of it (as data classes)
oh I see the dom thing is integrated in stdlib, I'll use that
n
👍
103 Views