Link to home
Start Free TrialLog in
Avatar of Doner
Doner

asked on

Java problem(runing application)

Hello,
  I just started using java and I´m using Textpad and j2sdk1.4.0. My problem begins with when ever I compile an applet I get this message that my applet is overriding or using a deprecated API("filename".java uses or overrides a deprecated API.) and I have almost tried evry thing that I can think of. My second problem lays in the application, I can compile it with no problems but when I try to run it I get this message in the dos-promt window "Exception in thread "main" java.lang.NoClassDefFoundError: Hallo
Press any key to continue . . ."

Can anyone help me please this is realy starting to bug me..
Avatar of rjackman
rjackman

hi
>>I get this message that my applet is overriding or using a deprecated API("filename".java
uses or overrides a deprecated API.)

Just a warning won't harm but if u want to remove it then try and compile ur class with -deprecation option
ie
javac -deprecation yourjavafilename.java

>>>>I can compile it with no problems but when I try to run it I get this
message in the dos-promt window "Exception in thread "main" java.lang.NoClassDefFoundError

Check your code again I think u don't have main method in your code
main method is the main entry point for the jvm
it's syntax is predefined
public static void main(String []args)
{

}

cheers
RJ
Applets cannot be run with Java. Create a HTML file as

<!DOCTYPE HTML>
<HTML>
<HEAD></HEAD>
<BODY>
<APPLET CODE="Hallo.class" CODEBASE="." WIDTH=400 HEIGHT=300>
</APPLET>
</BODY>
</HTML>

Save as Hallo.html

Now run with

appletviewer Hallo.html

or using any browser.
If using textpad, create the html file as CSuvandra said above,and while in textpad press ctrl and 3 to 'run' the HTML file - this will open the html file and run the applet.
It's easier than having to type out 'appletviewer' all the time or having a browser open.
Just for further information (an accompanying comment) deprecation is what they mean when they are planning to drop that method/class.  Eventually it will dissappear (gone), and then your code that uses this aspect will no longer work.  However, at the time when it only states that it is deprecated it will still work.  Just be aware type of thing.  use the above mentioned compile options.  You can also define a new tool option in TextPad by selecting the menu Configure-Preferences.  Then select the Tool choice (don't pull down, select)  Click on the add button and choose a program.  Then browse through the directory until you find the javac compiler (usually in your bin directory :))  It will then appear in your selection of tools.  Now modifiy the parameters that will be sent to the tool.  Use the predefined Javac settings, but in the Parameters section include "-deprecation $File"   use the rest of the parameters like in the standard call to the Javac compiler.  Now you have a command configured to handle those pesky messages!

Try writing:

java foobar

It will return with:
"Exception in thread "main" java.lang.NoClassDefFoundError: foobar"

So this is because it can't find your class file. If you are not using package in your java file, be sure that you are positioned at the correct place in you dos-prompt. If you are using package, you need to go to the root of your classpath, and write the package followed by the class name: java foo.bar.foobar

Since you state that you try to run the program in a dos-prompt, there is two things that you should be aware of. It is not an applet, these are run from within browsers, and you need to have a method:
public static void main(String[] strArgs)
in your java file.
Avatar of Doner

ASKER

class Hello
  {
    public static void main(String []args)
     {
       System.out.println("hello World");
     }
  }

this is the hello world program and I can´t get it to work I get the same message (Exception in thread "main" java.lang.NoClassDefFoundError: Hello
Press any key to continue . . .)



Avatar of Doner

ASKER

class Hello
  {
    public static void main(String []args)
     {
       System.out.println("hello World");
     }
  }

this is the hello world program and I can´t get it to work I get the same message (Exception in thread "main" java.lang.NoClassDefFoundError: Hello
Press any key to continue . . .)



If typing 'java Hello ' in dos, you have to be in the same directory as the java file. If the hello.java is stored in c:\java\prog1 you must change the dir in DOS to c:\java\prog1 then type 'javac Hello.java' to compile.
If typing 'java Hello ' in dos, you have to be in the same directory as the java file. If the hello.java is stored in c:\java\prog1 you must change the dir in DOS to c:\java\prog1 then type 'javac Hello.java' to compile.
Avatar of Doner

ASKER

Yes I know, I do not hava truble with compiling the .java file but runing the class file is the problem. After I have compiled the .java file and try to run it I get the message (Exception in thread
"main" java.lang.NoClassDefFoundError: Hello
Press any key to continue . . .)





is your java file named Hello.java - if it isn't that could be the problem.
ASKER CERTIFIED SOLUTION
Avatar of selsted
selsted

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Doner

ASKER

This work.

using classpath in your Parameters( -Classpath . $BaseName)
or in dos "java -classpath Hello".

Thanks for the help.....