Skip to content

Tag Archives: using java

how to read the subchilds from a XML file using JSP?

this is my XML file: <prog> <name>M</name> <child> <name>CM</name> <subchild> <name>SM</name> </subchild> </child> </prog> All i need now, is to fetch the value "SM" alone from the XML either using java or JSP. JSP wud be a better choice. Please someone help me on this !! Thanks and Regards. i want the procedure to be [...]

search word in xml file in java?

Anyone got idea how to search a specific word in a xml file by using java?

how do you add Information from an XML file to an image file in JAVA?

I have an XML file which contains text and an image file. I want to know how to open the image file, apply the text from the XML file to the image, and re-save the image using JAVA

explanation of java and xml relationship?

i need to know the overall technique that is used to send information through a network or internet using java and xml to another computer. i.e. how is this done?

how to modify java code using xml?

i have created a menu using java but now i want to create menu using xml

How do I read data in a XML file in Java?

I need to read an XML file in java. The XML file has a reference to an xsd in it’s <!DOCTYPE..> element. Something like noNameSpace = "D:\Xsd.xsd" I need to read this reference using Java. How do I do it? SAXParser is the parser im using…

Is there a way in java to export xml code to an sql table?

I want to take xml and export it to an MS SQL database Ok. Here is what I mean. I have a bunch of data that is stored under xml tags. All the data is hierarchical. I now want to put this into a relational database using SQL Server. Yeah I was typing fast and [...]

How to display an XML table in a HTML page using only an XSL?

I have successfully created an XML table using a XSL style sheet for the display. Now a part of my task is to import that table into a HTML file using only and only XSL… I know it can be done using java Script but how can I use XSL? any code?

How do I parse a XML file and create an equvalent HTML file and vice versa?

I need to parse a XML file using java and create an equvalent HTML file and also need to parse a HTML file and generate an equvalent XML file. Thank you. Code would be appriciated…or the ways to do it.