Forums Register Login

Word count problem.

+Pie Number of slices to send: Send
I am having trouble making a java program that reads a document and tells the user how many words there are in the document however it keeps giving me the following error:



this is what i got so far.



Any help appreciated. Thanks.
+Pie Number of slices to send: Send
Welcome to JavaRanch

How are you iterating through the text? You appear to use input.hasNext() as a test in your while loop. You are never doing anything with input in that loop, so that will always return true, until your i variable falls off the end of the String and you suffer a StringIndexOutOfBoundsException.
You will have to use the length of the String to tell whether you need to continue the loop.
+Pie Number of slices to send: Send
Thanks for the prompt reply .



Would it be something like that? but i am still getting errors. Still very new at this :S
+Pie Number of slices to send: Send
 

Avi Chat wrote:Would it be something like that? but i am still getting errors. Still very new at this :S



This is a common newbie mistake. You take too big a bite and then you end up with a heap of non-working code. Instead always develop programs in small incremental steps. Make sure everything works as expected before moving on. In this way your program will be working from start to finish. This is called Stepwise Refinement and it is the mother of all program development methods.

So start with simple program that just reads a a text file line by line and prints the lines to the screen. Then add functionality litle by little in small working increments.
WHAT is your favorite color? Blue, no yellow, ahhhhhhh! Tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com


reply
reply
This thread has been viewed 2866 times.
Similar Threads
How to alternate between two sets in a string?
How to read file line by line and word by word?
Reading file Input and Output
Writing to a file
Count the number of vowels, words, and sentences.
More...

All times above are in ranch (not your local) time.
The current ranch time is
Apr 16, 2024 01:19:30.