Classpath woes with JOONE/java

chomsky

Limp Gawd
Joined
Aug 18, 2004
Messages
251
I'm trying to setup the JOONE package for neural nets with java and I've downloaded the appropriate jars, extension libraries, and an example of code but I'm getting 30 errors on this simple app most likely because my paths are screwed up. Can anyone help me out?
I downloaded JOONE to:
C:\Documents and Settings\Jason\My Documents\Classes\Spring 06\JOONE
and the extensions to:
C:\Documents and Settings\Jason\My Documents\Classes\Spring 06\JOONE\ext

then added this line to my CLASSPATH system variable:
C:\Documents and Settings\Jason\My Documents\Classes\Spring 06\JOONE\joone-engine.jar;C:\Documents and Settings\Jason\My Documents\Classes\Spring 06\JOONE\ext\*.jar

and tried compiling Jeff Heaton's code verbatim from:
http://dyndna.dynalias.org/xwiki/bin/view/Main/JooneMemoryTraining?xpage=code&
which uses these import statements:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

import org.joone.engine.*;
import org.joone.engine.learning.*;
import org.joone.io.*;

I don't know why it works for him and not me, and I can't find any other code snippets out there that use joone to figure out what I'm doing wrong. Can anyone help me?
 
Back
Top