How to parse jsp file
843834Dec 22 2004 — edited Dec 23 2004What is the way to prase a JSP file which is in the local drive using a parser inorder to extract some information?.
For example :
<%@ page info=" hello world " %>
<html>
<head><title>Hello, World</title></head>
<body bgcolor="blue" >
<%@ include file="index.html" %>
<table>
<tr>
<td width=150> </td>
<td width=250 align=right> <h1>Hello, World!</h1> </td>
</tr>
</table>
</body>
</html>
What i want to do is to print the "title" of the page and the "file" which is in the tag <%@ include file="index.html" %>.
Thank you in advance.