RD
Hello,
I've a challenge! For my thesis, I have bunch of XML data files. They come form SAP and were created with the ARIS connector. I want to (re)convert these files back to CVS, but after hours and hours I still didn't mange to do so. Does ARIS have some tool or does anyone has a tip? The XML looks like this: <event>
<attribute type="NAME">John</attribute> <attribute type="TASK">Buy</attribute> <attribute type="DATE">12052017</attribute> </event> <event> <attribute type="NAME">John</attribute> <attribute type="RESOURCE">Dollar</attribute> <attribute type="DATE">13052017</attribute> </event> Many thanks!
I've a challenge! For my thesis, I have bunch of XML data files. They come form SAP and were created with the ARIS connector. I want to (re)convert these files back to CVS, but after hours and hours I still didn't mange to do so. Does ARIS have some tool or does anyone has a tip? The XML looks like this: <event>
<attribute type="NAME">John</attribute> <attribute type="TASK">Buy</attribute> <attribute type="DATE">12052017</attribute> </event> <event> <attribute type="NAME">John</attribute> <attribute type="RESOURCE">Dollar</attribute> <attribute type="DATE">13052017</attribute> </event> Many thanks!
XSLT (https://www.w3.org/TR/xslt) is a transformation language to transform XML into text based formats.
If you are familiar with the Java programming language both
- JAXP (https://docs.oracle.com/javase/tutorial/jaxp/) and
- JAXB (https://docs.oracle.com/javase/tutorial/jaxb/)
are helpful.
JAXB is more convenient but JAXP offers more possibilties.
Best regards
Carsten