Command line start java program

How to Compile & Run Java Program Using Command Prompt

This article was co-authored by Yaffet Meshesha. Yaffet Meshesha is a Computer Specialist and the Founder of Techy, a full-service computer pickup, repair, and delivery service. With over eight years of experience, Yaffet specializes in computer repairs and technical support. Techy has been featured on TechCrunch and Time.

This article has been viewed 952,736 times.

While many programming environments will allow you to compile and run a program within the environment, you can also compile and run using Command Prompt. Both Windows and Mac have their own versions of Command Prompt, although it is technically called Terminal on the Mac OS. The process is essentially identical for Windows and Mac.

Compiling and Running

Image titled Compile & Run Java Program Using Command Prompt Step 1

  • To ensure that your file is saved as a .java file, be sure to write .java after the file name, and select All Files from the dropdown extension menu.
  • Make note of where you saved the file on your system.
  • If you are unsure of how to write a program in Java, check out our tutorial on how to program in Java. For the purposes of learning how to compile and run a program, though, you can use any sort of Java program.

Image titled Compile & Run Java Program Using Command Prompt Step 2

  • Windows: Press ⇱ Home , then type cmd. Press ↵ Enter to open the Command Prompt.
  • Mac: In Finder, press the Go tab, select Applications, select Utilities, then select Terminal.
Читайте также:  Test

Image titled Compile & Run Java Program Using Command Prompt Step 3

  • If not, you may need to install the Java Development Kit from their website. It is free and can be found at this link: http://www.oracle.com/technetwork/java/javase/downloads/index.html.

Image titled Compile & Run Java Program Using Command Prompt Step 4

  • For example, if you were operating in C:\Users\Bob\Project and wanted to get to C:\Users\Bob\Project\TitanProject , enter in cd TitanProject and press ↵ Enter .
  • You can see a list of what is in your current directory by typing dir and pressing ↵ Enter .

Image titled Compile & Run Java Program Using Command Prompt Step 5

  • If you have any errors in your program, or if there is difficultly compiling, the command prompt will notify you.
  • Check out our article about how to fix compiler errors in Java for more help.

Image titled Compile & Run Java Program Using Command Prompt Step 6

  • After pressing ↵ Enter , your program should run. If you receive an error, or if your program fails to run in any way, refer to the troubleshooting method.

Troubleshooting

Image titled Compile & Run Java Program Using Command Prompt Step 7

  • Windows: Type java -version into the command prompt and press ↵ Enter . Based off the version of Java displayed on the first line, type in set path=%path%;C:\Program Files\Java\jdk1.5.0_09\bin to the command prompt and press ↵ Enter . Substitute jdk1.5.0_09 with whatever version of Java you have installed.
    • Be sure you are entering in this command while in the directory containing your Java project.

    Community Q&A

    What would I do if I type in the Java filename.java and it is not running? The code written in Notepad is correct.

    Thanks! We’re glad this was helpful.
    Thank you for your feedback.
    As a small thank you, we’d like to offer you a $30 gift card (valid at GoNift.com). Use it to try out great new products and services nationwide without paying full price—wine, food delivery, clothing and more. Enjoy! Claim Your Gift If wikiHow has helped you, please consider a small contribution to support us in helping more readers like you. We’re committed to providing the world with free how-to resources, and even $1 helps us in our mission. Support wikiHow

    Once you are in the correct directory, you can compile the program by typing «javac filename.java» into the command line and pressing enter.

    Thanks! We’re glad this was helpful.
    Thank you for your feedback.
    As a small thank you, we’d like to offer you a $30 gift card (valid at GoNift.com). Use it to try out great new products and services nationwide without paying full price—wine, food delivery, clothing and more. Enjoy! Claim Your Gift If wikiHow has helped you, please consider a small contribution to support us in helping more readers like you. We’re committed to providing the world with free how-to resources, and even $1 helps us in our mission. Support wikiHow

    Thanks! We’re glad this was helpful.
    Thank you for your feedback.
    As a small thank you, we’d like to offer you a $30 gift card (valid at GoNift.com). Use it to try out great new products and services nationwide without paying full price—wine, food delivery, clothing and more. Enjoy! Claim Your Gift If wikiHow has helped you, please consider a small contribution to support us in helping more readers like you. We’re committed to providing the world with free how-to resources, and even $1 helps us in our mission. Support wikiHow

    Again, it is important that you have the Java JDK downloaded and installed on your computer. The link is here: http://www.oracle.com/technetwork/java/javase/downloads/index.html.

    You Might Also Like

    Set Java Home

    How to Set JAVA_HOME for JDK & JRE: A Step-by-Step Guide

    Check Your Java Version in the Windows Command Line

    Use Easy Windows CMD Commands to Check Your Java Version

    Do Division in Java

    How to Do Division in Java (Integer and Floating Point)

    Compile and Run Java Program by Notepad

    How to Compile and Run Java Programs Using Notepad++

    Calculate Percentage in Java

    Add JARs to Project Build Paths in Eclipse (Java)

    Check Null in Java

    Install Java in Ubuntu Using Terminal

    Program in Java

    Create an Executable File from Eclipse

    Call a Method in Java

    Update Java

    Print Double Quotes in Java

    Simple Steps to Type a Bunny with Your Keyboard

    Check Java Version on a Mac

    About This Article

    This article was co-authored by Yaffet Meshesha. Yaffet Meshesha is a Computer Specialist and the Founder of Techy, a full-service computer pickup, repair, and delivery service. With over eight years of experience, Yaffet specializes in computer repairs and technical support. Techy has been featured on TechCrunch and Time. This article has been viewed 952,736 times.

    1. Type ″cmd″ into Windows search.
    2. Right-click Command prompt.
    3. Click Run as administrator.
    4. Type ″cd \path\to\java\program″.
    5. Press Enter.
    6. Type ″javac -filename.java″.
    7. Press Enter.
    8. Type ″java filename.java″.
    9. Press Enter.

    Reader Success Stories

    «There is not anything specifically good in any wikiHow Article. ‘Cause all wikiHow articles are awesome. We all love this site. Excellent Work.» . » more

    Is this article up to date?

    «There is not anything specifically good in any wikiHow Article. ‘Cause all wikiHow articles are awesome. We all love this site. Excellent Work.» . » more

    «I’m working on a Boy Scout Programming merit badge and I needed help with the Java part. I couldn’t compile it.» . » more

    Quizzes

    You Might Also Like

    How to Set JAVA_HOME for JDK & JRE: A Step-by-Step Guide

    Use Easy Windows CMD Commands to Check Your Java Version

    How to Do Division in Java (Integer and Floating Point)

    How to Compile and Run Java Programs Using Notepad++

    Источник

Оцените статью