Hey,
I've not worked with Java before, and I have a project from 1996 that I really need to get working
The source is here
These are the errors I get when trying to compile.
Which come from this code:
Can't work out why it doesn't like those imports, all their respective .java files are in the same directory, and ive tried compiling them first before the main file.
Anyone have any ideas? I have JDK and JRE installed, im unsure if it's a problem with my compilation environment (/ my lack of Java knowledge
) or the very dated code
Thanks,
Jack
I've not worked with Java before, and I have a project from 1996 that I really need to get working

The source is here
These are the errors I get when trying to compile.
Code:
[jack@tmain Source]$ javac -classpath . -sourcepath . EzStego.java
EzStego.java:26: '.' expected
import ImageEncoder;
^
EzStego.java:26: ';' expected
import ImageEncoder;
^
EzStego.java:27: class, interface, or enum expected
import GifEncoder;
^
EzStego.java:28: '.' expected
import EzStegoEncoder;
^
EzStego.java:28: ';' expected
import EzStegoEncoder;
^
EzStego.java:29: class, interface, or enum expected
import DynamicFilterInputStream;
^
6 errors
Which come from this code:
Code:
import ImageEncoder;
import GifEncoder;
import EzStegoEncoder;
import DynamicFilterInputStream;
Can't work out why it doesn't like those imports, all their respective .java files are in the same directory, and ive tried compiling them first before the main file.
Anyone have any ideas? I have JDK and JRE installed, im unsure if it's a problem with my compilation environment (/ my lack of Java knowledge


Thanks,
Jack