Skip to content
This repository was archived by the owner on Feb 21, 2024. It is now read-only.

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Chapter 2: Interacting with the Environment

2.1 Getting Environment Variables

Problem

You want to get the value of environment variables from within your Java program.

Solution

Use System.getenv().

2.2 Getting Information from System Properties

Problem

You need to get information from the system properties.

Solution

Use System.getProperty() or System.getProperties().