14 Wrap Up

Programming Methodologies, Life Cycle, & Deployment

Oracle Academy Section

  • None

Textbook Chapters

  • Appendix F: Program Style, Formatting, and Documentation

Read the book using the SQ3R technique.

Java Foundations Certification Exam Topics

  • The content of this module is not on the certification exam.

Most Important Concepts / Code

Deployment

  1. Create a runnable JAR file.

    1. In NetBeans: Build the project, go to the PROJECT_HOME/build folder to find the runnable JAR file. More information in the Deployment tutorial

    2. In Eclipse: File->Export->Runnable JAR file.

  2. Run the JAR file.

    1. In the directory containing the JAR file, create a .bat file that includes java -jar FileName.jar