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

Thread: When you write your first program what do you use to write in on?

  1. #1
    Junior Member
    Join Date
    Sep 2017
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default When you write your first program what do you use to write in on?

    When you begin to write computer programs what do you use to write them?

    Like when a scriptwriter begins to write his screenplay, he may use Final Draft which is software that he can compose his manuscript on.

    I am very new to programming, like today, and would like to learn how to do this, I can learn on my own, but would like to know what you other programmers use to write your programs on?

    Like Word? Notepad? Another software app? Something off the web? What?

    I went to college in 1982 and graduated in 87, back then programming did not interest me, now I see it as the only thing worth learning.

    I am 53 years old and I hope that I can either get a job someday in programming or program something so I can make my own money doing programming and be good at what I do. The being good part at what I do is most important.

    Thank You.

  2. #2
    Junior Member
    Join Date
    Sep 2017
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: When you write your first program what do you use to write in on?

    You can use Notepad, but a lot of people use a thing called an IDE.

    Most often used are Eclipse, IntelliJ, or Netbeans.

    edit: If you need some help starting up feel free to message me and I'll get you started.

  3. #3
    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: When you write your first program what do you use to write in on?

    To start I'd recommend using a simple editor to create the java source file and maybe some batch files to compile and execute the program.
    You'll want to experiment with classes in packages and using the classpath with the javac and java commands. See the API doc for the commandline options: Java Platform Standard Edition 8 Documentation
    Once you are comfortable with those tools, you'll want to move to an IDE that has lots of features (almost too many for a beginner).
    If you don't understand my answer, don't ignore it, ask a question.

  4. #4
    Junior Member
    Join Date
    Sep 2017
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: When you write your first program what do you use to write in on?

    I downloaded JDK-8u141-nb-8_2-windows-x64 and installed it and it seems to work. Is their anything else I am missing? I also have a beginner's Dummy Book that I will try and work through.

    I am curious does Java have something set that tells you what the symbols that you would use mean? Like you get when you have a keyboard and it shows you what each symbol means?
    Last edited by BeginningProgrammer; September 19th, 2017 at 07:08 PM. Reason: Added more information

  5. #5
    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: When you write your first program what do you use to write in on?

    what the symbols that you would use mean
    Can you explain what you mean by "symbols"? A java source file contains ordinary ASCII characters.
    You type in the source with an editor and save it in a file with the .java extension
    Next compile it with the javac command
    If no errors, a .class file is created
    The class file is executed with the java command

    What OS are you on?
    If you don't understand my answer, don't ignore it, ask a question.

  6. #6
    Junior Member
    Join Date
    Sep 2017
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: When you write your first program what do you use to write in on?

    OS Windows 7.

Similar Threads

  1. who can help me write this program?
    By guled in forum What's Wrong With My Code?
    Replies: 3
    Last Post: September 22nd, 2013, 01:31 PM
  2. Replies: 15
    Last Post: May 2nd, 2013, 05:29 AM
  3. Replies: 2
    Last Post: January 25th, 2013, 09:54 PM
  4. How would I write this program?
    By mjballa in forum Java Theory & Questions
    Replies: 2
    Last Post: November 14th, 2011, 11:49 PM