How to add new menu item in ireport 3.7.2 - by Jagadesh I am customizing the iReport sources. I need to add a new menu item in iReport designer. Note: iReport 3.7.2 is used. Can anyone tell the procedure? Read the article
How to insert a xml node as first child in another xml document in java? - by Jagadesh for eg. root= <root> <param value="abc"> <param value="bc"> </root> NodeToInsert= `<insert><parameterDesc>afds</parameterDesc></insert>` The output should be = <root> <insert><parameterDesc>afds</parameterDesc></insert> <param value="abc"> <param value="bc"> </root> Read the article
how to add a xml document to another xml document in java. - by Jagadesh I have a xml document like this rootXMLDoc=<root></root> . I need to insert paramxmlDoc= <parameter par='1'>abc</parameter>. how to insert paramxmlDoc to rootXMLDoc in java.? Read the article