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

Latest commit

 

History

History
21 lines (11 loc) · 410 Bytes

File metadata and controls

21 lines (11 loc) · 410 Bytes

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().