Re: [gentoo-user] Java IDE's, (problems with) executing java .classes and you

2005-01-31 Thread Qian Qiao
On Sun, 30 Jan 2005 20:05:49 -0500, Phill [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] java $ java Test.class Exception in thread main java.lang.NoClassDefFoundError: Test/class/ I'll call this a standard error. You should type $ java Test instead of $ java Test.class. You have some serious

Re: [gentoo-user] Java IDE's, (problems with) executing java .classes and you

2005-01-31 Thread Antoine
Phill wrote: Manuel McLure wrote: Phill wrote: [EMAIL PROTECTED] java $ java Test.class Exception in thread main java.lang.NoClassDefFoundError: Test/class/ Try export CLASSPATH=.:${CLASSPATH} java Test When you run the Java class, you give it just the name of the class without the

[gentoo-user] Java IDE's, (problems with) executing java .classes and you

2005-01-30 Thread Phill
I'm having problems executing java .class files. It'll compile just fine but when execution comes about the following happens: /[EMAIL PROTECTED] java $ javac -g -verbose Test.java [parsing started Test.java] [parsing completed 110ms] [loading

Re: [gentoo-user] Java IDE's, (problems with) executing java .classes and you

2005-01-30 Thread Manuel McLure
Phill wrote: [EMAIL PROTECTED] java $ java Test.class Exception in thread main java.lang.NoClassDefFoundError: Test/class/ Try export CLASSPATH=.:${CLASSPATH} java Test When you run the Java class, you give it just the name of the class without the extension. If you say java Test.class it's

Re: [gentoo-user] Java IDE's, (problems with) executing java .classes and you

2005-01-30 Thread Manuel McLure
Phill wrote: On a related note, I'm picking up Java in school and as a neat language to go on about. Now, my school board licensed a very basic IDE from this Toronto based software house that: compiles and executes your code AND has the ability to trace execution. I realise this may be a bit to

Re: [gentoo-user] Java IDE's, (problems with) executing java .classes and you

2005-01-30 Thread Boyd Stephen Smith Jr.
On Sunday 30 January 2005 07:05 pm, Phill [EMAIL PROTECTED] wrote: I'm having problems executing java .class files. It'll compile just fine but when execution comes about the following happens: [EMAIL PROTECTED] java $ java Test.class ^^ This is wrong. The java

Re: [gentoo-user] Java IDE's, (problems with) executing java .classes and you

2005-01-30 Thread John Myers
On Sunday 30 January 2005 18:06, Manuel McLure wrote: Phill wrote: Any suggestions? Try eclipse - emerge the eclipse-sdk package. I'll second that! Eclipse is the best IDE I've ever seen, ever. Mind you, I've not seen a whole lot of IDEs, but of those I've seen, Eclipse rocks the house.

Re: [gentoo-user] Java IDE's, (problems with) executing java .classes and you

2005-01-30 Thread Phill
Manuel McLure wrote: Phill wrote: [EMAIL PROTECTED] java $ java Test.class Exception in thread main java.lang.NoClassDefFoundError: Test/class/ Try export CLASSPATH=.:${CLASSPATH} java Test When you run the Java class, you give it just the name of the class without the extension. If you

Re: [gentoo-user] Java IDE's, (problems with) executing java .classes and you

2005-01-30 Thread Manuel McLure
Phill wrote: ... D'OH. Just don't ask me how I knew that was the problem ;) -- Manuel A. McLure KE6TAW [EMAIL PROTECTED] http://www.mclure.org ...for in Ulthar, according to an ancient and significant law, no man may kill a cat. -- H.P. Lovecraft -- gentoo-user@gentoo.org

Re: [gentoo-user] Java IDE's, (problems with) executing java .classes and you

2005-01-30 Thread Phill
On a related note, I'm picking up Java in school and as a neat language to go on about. Now, my school board licensed a very basic IDE from this Toronto based software house that: compiles and executes your code AND has the ability to trace execution. Are you talking about BlueJ? I think