vote up 0 vote down star

Hi i'm begginner in java i'm reading characters from file(FileReader) but when i read length of the i'm not getting correct result, its displaying less size compare to correct one.plz reply wat is the problem.

thanks for reply

flag
FileReader is a stream and has no method to determine file size. What method are you using exactly and how are you determining the size with which to compare? Can you edit your question to post some code? – Jason Coco Jan 2 '09 at 5:53
What are you trying to achieve? The filesize, the number of characters, or the number of words? you need to word the question a bit better. – John T Jan 2 '09 at 5:55

3 Answers

vote up 0 vote down

Number of characters read from a file may not be equal to file size (encoding makes the diference). But, as abyx wrote, if size of a file in bytes is what you need, go with File.length().

link|flag
vote up 0 vote down

Usually, determining file length should not be done by reading it. It should be done by using File.length()

link|flag
vote up 1 vote down

*"Hi i'm begginner in java i'm reading characters from file(FileReader) but when i read length of the i'm not getting correct result, its displaying less size compare to correct one.plz reply wat is the problem.

thanks for reply"*

Could you please review your question and spell out your problem at greater length and proof-read your edited version to make sure all the words that you intended to be in the post are actually in the posting.

Please give some specifics such as:

  • what is the expected length?
  • why do you expect that length?
  • what is the returned length?
  • what is the code you are using to get that return?
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.