Title
b

bjonnh

05/01/2018, 6:25 PM
any recommended xml parsing library for kotlin?
n

nfrankel

05/01/2018, 6:28 PM
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

bjonnh

05/01/2018, 6:31 PM
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

nfrankel

05/01/2018, 6:43 PM
👍