Question
How to convert xml to list of Map of Strings? I have an xml data like this ` SCJP Kathy Sierra Tata McGraw Hill 856-545456736
How to convert xml to list of Map of Strings?
I have an xml data like this
`` SCJP Kathy Sierra Tata McGraw Hill 856-545456736 Java Persistence with Hibernate Christian Bauer Manning 978-3832180577
I have an xml data like this
`` SCJP Kathy Sierra Tata McGraw Hill 856-545456736 Java Persistence with Hibernate Christian Bauer Manning 978-3832180577
Is there a way to to convert this xml data to List
I have tried to extract this with java code using JAX unmarshalling ,
https://ibytecode.com/blog/jaxb-marshalling-and-unmarshalling-list-of-objects/,
which is working for me and i am getting results like
[Book [name=SCJP, author=Kathy Sierra, publisher=Tata McGraw Hill, isbn=856-545456736], Book [name=Java Persistence with Hibernate, author=Christian Bauer, publisher=Manning, isbn=978- 3832180577]]
I have an xml data like this
`` SCJP Kathy Sierra Tata McGraw Hill 856-545456736 Java Persistence with Hibernate Christian Bauer Manning 978-3832180577
Is there a way to to convert this xml data to List
I have tried to extract this with java code using JAX unmarshalling ,
https://ibytecode.com/blog/jaxb-marshalling-and-unmarshalling-list-of-objects/,
which is working for me and i am getting results like
[Book [name=SCJP, author=Kathy Sierra, publisher=Tata McGraw Hill, isbn=856-545456736], Book [name=Java Persistence with Hibernate, author=Christian Bauer, publisher=Manning, isbn=978- 3832180577]]
I am only expecting
[{name="SCJP", author="Kathy Sierra", publisher="Tata McGraw Hill", isbn="856-545456736"}, {name="Java Persistence with Hibernate", author="Christian Bauer", publisher="Manning", isbn="978- 3832180577"}].
I have found there is a way with the saxon api, but i am new to SAXON api. Can someone please able to assist me for this please. Thank you very much
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started