Enter your email address:

Delivered by FeedBurner


Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Read data from xml and show in jsp page project download
12-12-2011, 11:30 PM
Post: #1
Star Read data from xml and show in jsp page project download
Today we are going to know how to read data from xml file and show it in jsp page.
First create a xml file ex:"names.xml" like below

Quote:<?xml version="1.0"?>
<xmldata>
<student>
<RegistrationNo>1</RegistrationNo>
<StudentID>31313</StudentID>
<Name>sample</Name>
<FName>Mr.sample</FName>
</student>

Now we have to write the coding to read each and every parent and sub node so we write code as follows

<%@ page contentType="text/html"%>
<%@ page import="javax.xml.parsers.DocumentBuilderFactory,javax.xml.parsers.DocumentBuilder,org.w​3c.dom.*"%>
<% DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.parse("http://localhost:8084/s2sgatewayxml/names.xml");

NodeList RegistrationNo = doc.getElementsByTagName("RegistrationNo");
NodeList StudentID = doc.getElementsByTagName("StudentID");
NodeList Name = doc.getElementsByTagName("Name");
NodeList FName = doc.getElementsByTagName("FName");

%>


Quote:<html>
<head>
<meta></meta>
<title>s2sgateway tutorials: XML with JSP : webmaster@s2sgateway.com</title>
</head>
<body>
<table border=0 bgcolor="green" width=80% cellspacing=2 cellpadding=2 align=center>
<tr>
<td style="font-family:arial,verdana;font-size:9pt;">
<font color=white face="courier new" face=1><strong>Reading XML Data from JSP</strong></font>
</td>
</tr>
</table>
<br>
<table border=0 width=80% style="border: thin groove white;" cellspacing=2 cellpadding=2 align=center>
<tr>
<td bgcolor="green"><font color=white face="courier new" face=1> </font></td>
<td bgcolor="green"><font color=white face="courier new" face=1>RegistrationNo</font></td>
<td bgcolor="green"><font color=white face="courier new" face=1>StudentID</font></td>
<td bgcolor="green"><font color=white face="courier new" face=1>Name</font></td>
<td bgcolor="green"><font color=white face="courier new" face=1>FName</font></td>
</tr>
<%int i;
for (i=0;i<=RegistrationNo.getLength()-1;i++)
{%>
<tr>
<td>
<font face="courier new" face=1>

</font>
</td>
<td>
<font face="courier new" face=1>
<%= RegistrationNo.item(i).getFirstChild().getNodeValue()%>
</font>
</td>
<td>
<font face="courier new" face=1>
<%= StudentID.item(i).getFirstChild().getNodeValue()%>
</font>
</td>
<td>
<font face="courier new" face=1>
<%= Name.item(i).getFirstChild().getNodeValue()%>
</font>
</td>
<td>
<font face="courier new" face=1>
<%= FName.item(i).getFirstChild().getNodeValue()%>
</font>
</td>
</tr>
<%}%>
</table>
</body>
</html>

here Document doc = db.parse("http://localhost:8084/s2sgateway.comxml/names.xml");
is the location of xml file if your location is just localhost change according to that.
Download Full Source and paste it to webapps folder of tomcat and run it. Any question ask us.

Happy coding
Find all posts by this user
Add Thank You Quote this message in a reply
Advertise here or at any positions around our site send a mail to info@walkinsforum.com
Post Reply 


[-]
Share/Bookmark (Show All)
Facebook Linkedin Technorati Twitter Digg MySpace Delicious

Possibly Related Threads...
Thread: Author Replies Views: Last Post
Information JSP Complete Project download rajasri 25 2,888 05-18-2012 01:07 PM
Last Post: kusuma
Tongue Students management java project download rajasri 25 2,290 05-15-2012 12:45 PM
Last Post: itischinmay
  JSP Complete Project download admin 3 776 05-13-2012 09:23 PM
Last Post: viknass
Lightbulb free jsp project download rajasri 7 2,144 04-19-2012 12:25 PM
Last Post: poonam
Big Grin In Tomcat jsp page is not refreshing rajasri 0 199 12-19-2011 06:11 PM
Last Post: rajasri
Exclamation captcha project in jsp/servlet rajasri 0 598 12-19-2011 05:44 PM
Last Post: rajasri
Thumbs Up Display combo box value/Database value on same JSP page rajasri 0 326 12-19-2011 04:57 PM
Last Post: rajasri
Its My Birthday! Display database value in jsp page rajasri 0 609 12-14-2011 11:43 AM
Last Post: rajasri
Video simple update query in jsp page rajasri 0 1,067 12-14-2011 11:36 AM
Last Post: rajasri
Shocked update using parameters in jsp page rajasri 0 434 12-14-2011 11:34 AM
Last Post: rajasri

Forum Jump:


User(s) browsing this thread: 1 Guest(s)