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 9 of 9

Thread: Just Joined

  1. #1
    Junior Member
    Join Date
    Feb 2010
    Posts
    4
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Just Joined

    Ello
    just joined and could use a little help getting started any suggestions?
    not taking any classes trying to self teach so any suggestions much appreciated
    thnx


  2. #2
    Super Moderator Json's Avatar
    Join Date
    Jul 2009
    Location
    Warrington, United Kingdom
    Posts
    1,274
    My Mood
    Happy
    Thanks
    70
    Thanked 156 Times in 152 Posts

    Default Re: Just Joined

    Hello and welcome Jimmy, glad to see someone else going down the self teaching road

    A really good starting point might be this: The Really Big Index

    // Json

  3. The Following User Says Thank You to Json For This Useful Post:

    Jimmy (February 11th, 2010)

  4. #3
    Junior Member
    Join Date
    Feb 2010
    Posts
    4
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Re: Just Joined

    thnx
    do u know anything about using notepad on windows 7 for java because i cant seem to get it to work

  5. #4
    Junior Member
    Join Date
    Feb 2010
    Posts
    2
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Re: Just Joined

    try to install npp (Notepad++) it works very well.

  6. #5
    Super Moderator Json's Avatar
    Join Date
    Jul 2009
    Location
    Warrington, United Kingdom
    Posts
    1,274
    My Mood
    Happy
    Thanks
    70
    Thanked 156 Times in 152 Posts

    Default Re: Just Joined

    I would use a proper IDE to be honest, using notepad just causes you grief which you dont really need.

    Try Eclipse.org home

    // Json

  7. The Following User Says Thank You to Json For This Useful Post:

    mwendamseke (February 13th, 2010)

  8. #6
    Junior Member
    Join Date
    Feb 2010
    Posts
    4
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Re: Just Joined

    ok thank you but which IDE would you suggest right now i am using textpad and looking for a compiler but thats different but all the compilers i find are for vista and below i am using windows 7.

  9. #7
    Junior Member
    Join Date
    Feb 2010
    Posts
    2
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Post want to know java


    ]hello, i am just finish java programming essential and now i want to be competent in java including mobile based programming, what steps to follow up to achieve it?
    i plan to start it next week since this week i'll be sitting for university examinations.
    so i ask if any will go hand by hand with me.

  10. #8
    Super Moderator Json's Avatar
    Join Date
    Jul 2009
    Location
    Warrington, United Kingdom
    Posts
    1,274
    My Mood
    Happy
    Thanks
    70
    Thanked 156 Times in 152 Posts

    Default Re: Just Joined

    Jimmy, I would go for Eclipse any day, its what I use every day at the moment as well. If you are running on a 64 bit windows machine you might want to have a look at the new Eclipse Helios builds with 64 bit support.

    See Eclipse Project

    // Json

  11. #9
    Junior Member
    Join Date
    Feb 2010
    Posts
    4
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Re: Just Joined

    thanks and i took your advice eclipse is a lot better than what i was using but for some reason it wont run i mean im using a book too that i got from a teacher that used to teach java but for i type the code perfect and it still doesnt work because it cant find the main class in it here's the code

    class java {
    //
    public static void main(String args[]) {
    int var1; //
    int var2; //

    var1 = 1024; //
    System.out.println("var1 contain " + var1);
    var2 = var1 / 2;
    System.out.print("var2 contains var1 / 2; ");

    System.out.println("var2 ");
    }
    }

    and once again this is out of the book i am using