Re: Reading in a Dictionary File



Fahd Shariff wrote:
Reading in a dictionary file is the same as reading in any other file.
You use a BufferedReader and store the contents of the dictionary in
some kind of data structure, for example.

Not necessarily a BufferedReader. An DataInputStream or a RandomAccessFile might be necessary. There's just no way of knowing without more information.

--
John W. Kennedy
"The blind rulers of Logres
Nourished the land on a fallacy of rational virtue."
-- Charles Williams. "Taliessin through Logres: Prelude"
.



Relevant Pages

  • Re: Reading in a Dictionary File
    ... John W. Kennedy wrote: ... You use a BufferedReader and store the contents of the dictionary in ... some kind of data structure, ... Not necessarily a BufferedReader. ...
    (comp.lang.java.help)
  • Re: Reading in a Dictionary File
    ... some kind of data structure, ... Not necessarily a BufferedReader. ... A few plausible file formats for a dictionary: ...
    (comp.lang.java.help)