Relative Content

Tag Archive for javaxslt-3.0

Unable to transform Json object to another json object with xslt in java

Sample json object for tarnsformation:
{
“order”: {
“orderid”: 1,
“orderProps”: [
{
“Category 1”: “Marine”,
“Date 1”: “31/03/2003”,
“Date 2”: “31/12/2021”,
“Paid”: 10,
“OS”: 4
},
{
“Category 1”: “Marine”,
“Date 1”: “31/03/2003”,
“Date 2”: “31/12/2021”,
“Paid”: 13,
“OS”: 5
},
{
“Category 1”: “Marine”,
“Date 1”: “31/12/2021”,
“Date 2”: “31/03/2022”,
“Paid”: 2,
“OS”: 5
},
{
“Category 1”: “Engineering”,
“Date 1”: “31/03/2005”,
“Date 2”: “31/12/2022”,
“Paid”: 134,
“OS”: 533
},
{
“Category 1”: “Engineering”,
“Date 1”: “31/03/2005”,
“Date 2”: “31/12/2022”,
“Paid”: 387,
“OS”: 4221
},
{
“Category 1”: “Engineering”,
“Date 1”: “31/12/2021”,
“Date 2”: “31/03/2022”,
“Paid”: 134,
“OS”: 533
}
]
}
}