• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Is anyone have program for making dictionary using standard(core) java?

 
Greenhorn
Posts: 17
Java ME C++ Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is anyone have program for making dictionary using standard(core) java???


Please reply!!!
 
Bartender
Posts: 6663
5
MyEclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This does not seem to have anything to do with SCJP, so I will move the post to Jig for you.

As for the question itself, what kind of dictionary are you trying to create ? One like Oxford ? Or is it a dictionary that simply contains a list of words ? Because that is a dictionary too.

What is the objective behind the creation of this dictionary ?
 
Mak Smash
Greenhorn
Posts: 17
Java ME C++ Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I want Oxford like dictionary. I had this question in my exam.
 
Marshal
Posts: 28193
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Do you mean to say you took an exam and one of the questions was

Is anyone have program for making dictionary using standard(core) java???


That doesn't sound very likely to me.
 
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If the question was something like "Explain how you would build a dictionary using only the core java libraries", that is a likely question (got one similar in an exam).
To start you may want to see what exactly a dictionary is. It seems to me it is a word with the meaning in front of it. So, you have a word, that does not repeat, and a series of words that relates to it. Doesn't that sound like something?
 
reply
    Bookmark Topic Watch Topic
  • New Topic