Please I'm Relatively new to Java Programming am a first year Computer Science Student please I want to develop an offline dictionary for Nokia s40 phones .jar that translates English to my Local language I've googled and searched the discussion topics for similar posts but I've not found any related posts please any Help and information will be useful cos am still a beginner Thanks a lot.
Developing an offline dictionary
1.3k Views Asked by Ani Tochukwu At
2
There are 2 best solutions below
1

A dictionary is nothing but something like a map, that maps two strings together, or a keyword to a description. You can use the MAP Interface to begin with.
You can use the above to do something like this:
Map<String, String> myDictionary = TreeMap<String, String>();
dictionary.put("Hello", "Ola in Spanish");
System.out.println(myDictionary.get("Hello"));
Here,
- key - provides access to a value.
- value - maps to a specified key.
- Hello - Ola in Spanish
If everything is new to you, I suggest to learn to write from basic first, i.e, learn to write a simple dictionary application for desktop. After that you will have an idea on what should be the program's structure and component. Then you can start learning how to program to Nokia phone and port the application over.
Start by looking at source code of some open source dictionary. For example, openDict http://opendict.sourceforge.net/?cid=1