Why would you need a dictionary programmed? All it is is a list of words.
Here is the shortest wordlist I have:
http://www.javaop.com/~iago/commonpwd.txtIf you really want to use it from Java, this might or might not work (untested)
// ReadDictionary.java
public class ReadDictionary
{
public static void main(String []args) throws Exception
{
BufferedReader in = new BufferedReader(new FileReader(new File("commandpwd.txt")));
String line;
while((line = in.readLine()) != null)
dosomethingwith(line);
}
}
There, now you have an opensource thinger
Anyway, the problem with your idea is that, to my knowledge, there's no way to pull a list of words from dictionary.com. Even if there was, it would be nothing remotely simiilar to getting the definition, so my plugin would be useless So