+ 1
How can I show instructions taken from an xml in javaweb??
I have an XML file which has several tags with instructions, I have to execute those instructions and display them in a web page, how can I do that? for example i have this tag: <?xml version="1.0" encoding="UTF-8"?> <instructions> <for> <times>3</times> <print>hello</print> </for> </instructions> And i need to show 3 times the word hello on the javaweb
1 Answer