CanOfBees
01/02/2025, 7:38 PM<root>
<item>
<thing>abc</thing>
<part>def</part>
</item>
<item>
<thing>fgh</thing>
<part>ijk</part>
</item>
<!-- ... repeat -->
</root>
Edit: Apologies, I hit Enter too quickly.
when processing the stream, serialize each <item>
to a separate file.
My questions revolve around marshalling/unmarshalling XML and whether or not this is something I need to work into my attempt, or if the Jackson/Woodstox would be sufficient for my attempt. Thanks in advance for your time!
Edit, part II: 🤦 the context is Kotlin on the JVM and desktop.