Re: Netbeans/Cygwin/JDK issue
saad wrote:
To add, first few lines of Simulator.java read:
package A.S;
import A.C.*;
import A.P.*;
import java.util.*;
import java.io.*;
and this file also has a method with this signature:
public class Simulator {
public static void main ( String [] args )
{
// ...
}
}
That's where things start. Check to make sure you are running the
correct file. You could also look at args to see how %1 %2 %3 are used.
To set the classpath, just add it to the existing CLASSPATH variable.
For example:
c:\my\stuff\A\S\Simulator.class
CLASSPATH=c:\my\stuff
The java command should now recognize A\S as corresponding to the
package A.S and find the Simulator.class file.
(For Cygwin, I guess you'd use your example and set CLASSPATH=/c/java)
If your problem is that you added an extra /a on the end, this is pretty
remedial. Better go read up on Java or you're going to have a very
tough time. The Sun tutorial is good.
I'd use the CLASSPATH because -cp over-rides your existing classpath.
The -cp switch works for simple self-contained programs but may not work
if there are extra .jar's or other .class files that are needed
elsewhere on the disk. It's easiest to set CLASSPATH from the Control
Panel, imo. Just add ;c:\my\stuff to the end of the CLASSPATH variable
and you should be ok.
For the NetBeans thing... New Project->General->Java Project with
Existing Sources. *coughRTFMcough*