Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: java programming beginer

  1. #1
    Junior Member
    Join Date
    Nov 2012
    Posts
    14
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default java programming beginer

    I have just started with the hello world program but i got this error what is this please help..
    this is the code of program:
    package eclipsePackage;




    public class Javaclass {




    /**
    * @param args
    */
    public static void main(String[] args) {
    // TODO Auto-generated method stub
    System.out.println("hello world");
    }




    }

    error :


    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    Exception in thread "main"


  2. #2
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: java programming beginer

    Please post the full text of the error message. Some of it has been left off.

    Please Edit your post and wrap your code with
    [code=java]
    <YOUR CODE HERE>
    [/code]
    to get highlighting and preserve formatting.
    If you don't understand my answer, don't ignore it, ask a question.

Similar Threads

  1. beginer in java .. needing help
    By Kandarp in forum Java IDEs
    Replies: 4
    Last Post: August 31st, 2012, 08:05 AM
  2. java beginer
    By anuj_dup in forum Member Introductions
    Replies: 1
    Last Post: July 5th, 2012, 09:17 AM
  3. HELP WITH MY BEGINER JAVA CODE..
    By nfs1mostwanted in forum What's Wrong With My Code?
    Replies: 6
    Last Post: March 2nd, 2012, 12:01 PM
  4. Arrays (Beginer)
    By stephen6292 in forum What's Wrong With My Code?
    Replies: 4
    Last Post: February 16th, 2012, 09:13 AM
  5. Yet another beginer help post...
    By Gondee in forum JDBC & Databases
    Replies: 3
    Last Post: November 14th, 2010, 02:31 AM

Tags for this Thread