Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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> or List> with out using a class? .Please help. Thanks

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> or List> with out using a class? .Please help. Thanks

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Put Your Data To Work 52 Tips And Techniques For Effectively Managing Your Database

Authors: Wes Trochlil

1st Edition

0880343079, 978-0880343077

More Books

Students also viewed these Databases questions