Click to See Complete Forum and Search --> : How to search a keyword in the website using Java
veera_sac
04-11-2005, 06:49 AM
Hi Everyone
As I am new to Java I am unable to do this part using Java. I feel it more complex to do this part. I need some help on this.............
Khalid Ali
04-11-2005, 07:14 AM
is it Java or JavaScript you are after?
buntine
04-11-2005, 07:49 AM
You will need to parse each page and search its contents for the keyword. It can get tricky if you go into too much detail, such as disregarding HTML elements and client-side source.
There are several ways to read files using the IO package supplied by Java. I usually use the InputStreamReader or FileReader objects. A google search will warrant some official documentation.
Regards.