javajungsuk_basic

repository·master·Indexed 20 days ago

https://github.com/castello/javajungsuk_basic

Source code and learning materials for the 'Java의 정석 기초편' (Java Fundamentals) textbook. Includes complete source code, practice exercise solutions, lecture summaries, and installation guides for JDK 8 and Eclipse IDE on Windows and macOS.

Tokens
740
Snippets
3
Records
5
Agent score
23%

What's inside javajungsuk_basic

  1. Understand the repository contents

    master

    This repository contains the source code and supplementary materials for the book 'Java의 정석 기초편' (Java Fundamentals). The contents include:

    • javajungsuk_basic_src: The complete source code from the book.
    • 연습문제 풀이: Solutions to the practice exercises by chapter.
    • ppt: Lecture summary materials.
    • javajungsuk_basic_요약집.pdf: A PDF version of the lecture summaries.
    • javajungsuk_basic_sample.pdf: A sample eBook covering chapters 1 through 4.
    • flash: Step-by-step Flash video explanations for 9 difficult concepts (Windows only, .exe files).
  2. Install JDK 8 on Mac using SDKMAN

    master

    On macOS, it is recommended to use SDKMAN to manage and install OpenJDK.

    1. Install SDKMAN:

      $ curl -s "https://get.sdkman.io" | bash
      $ source "$HOME/.sdkman/bin/sdkman-init.sh"
    2. Install and manage Java versions:

      • List available/installed JDKs: sdk list java
      • Install a specific version (e.g., Zulu JDK 8): sdk install java 8.0.292-zulu
      • Set a version globally: sdk default java 8.0.292-zulu
      • Set a version for the current shell only: sdk use java 8.0.292-zulu
      • Check current version: sdk current java
      • Check JAVA_HOME path: echo $JAVA_HOME
    $ curl -s "https://get.sdkman.io" | bash
    $ source "$HOME/.sdkman/bin/sdkman-init.sh"
    
    $ sdk list java
    $ sdk install java 8.0.292-zulu
    $ sdk default java 8.0.292-zulu
    $ sdk use java 8.0.292-zulu
    $ sdk current java
    $ echo $JAVA_HOME
  3. Configure eclipse.ini for Mac

    master

    If you are using Eclipse on Mac and need to manually point to your JDK installed via SDKMAN, modify your eclipse.ini file. Add the -vm flag followed by the path to your JDK's bin directory.

    Example configuration snippet for eclipse.ini:

    -vm
    /Users/seongnamkung/.sdkman/candidates/java/8.0.292-zulu/bin