[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]


    Search the Q&A Archives


...write a programm that count words in html pages. I...

<< Back to general questions

Question by kognitio
Submitted on 2/8/2004
Related FAQ: N/A
Rating: Rate this question: Vote
How can I write a programm that count words in html pages. I already wrote a programm that gives print all the words, but I do not know, how to count them:
import java.net.*;
import java.io.*;
import java.lang.*;

public class alle
{
public static void main(String[] args)
throws Exception
{

System.out.println( "Geben sie die Internetseite an in dieser Form: www.internetseite.de ");
BufferedReader l = new BufferedReader(new InputStreamReader(System.in));
String internetseite = l.readLine();



// Liest internetseiten
URL yahoo = new URL("http://"+internetseite);
URLConnection yc = yahoo.openConnection();

BufferedReader in = new BufferedReader(new InputStreamReader(yc.getInputStream()));
String inputLine;
while( (inputLine=in.readLine()) != null )
{
// mit split die einzelnen Wˆrter auslesen


String [] einzelneWoerter = inputLine.split( " |=|<|>|"|:|;|-|#|/|,|;|'|&|\?|$|_" );


//mit for-schleife wˆrter quecken...
for (int i=0; i < einzelneWoerter.length; i++)

{
System.out.println(einzelneWoerter[i]);
}
}
}
}

Thanks for helping...



Answer by paul
Submitted on 11/19/2005
Rating: Not yet rated Rate this answer: Vote
ebere2

 

Your answer will be published for anyone to see and rate.  Your answer will not be displayed immediately.  If you'd like to get expert points and benefit from positive ratings, please create a new account or login into an existing account below.


Your name or nickname:
If you'd like to create a new account or access your existing account, put in your password here:
Your answer:

FAQS.ORG reserves the right to edit your answer as to improve its clarity.  By submitting your answer you authorize FAQS.ORG to publish your answer on the WWW without any restrictions. You agree to hold harmless and indemnify FAQS.ORG against any claims, costs, or damages resulting from publishing your answer.

 

FAQS.ORG makes no guarantees as to the accuracy of the posts. Each post is the personal opinion of the poster. These posts are not intended to substitute for medical, tax, legal, investment, accounting, or other professional advice. FAQS.ORG does not endorse any opinion or any product or service mentioned mentioned in these posts.

 

<< Back to general questions


[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]

© 2008 FAQS.ORG. All rights reserved.