Chapter 2. Interacting with the Environment

Introduction

This chapter describes how your Java program can deal with its immediate surroundings, what we call the runtime environment . In one sense, everything you do in a Java program using almost any Java API involves the environment. Here we focus more narrowly on things that directly surround your program. Along the way we’ll meet the System class, which knows a lot about our system.

Two other runtime classes deserve brief mention. The first, java.lang.Runtime, lies behind many of the methods in the System class. System.exit( ), for example, just calls Runtime.exit( ). This is technically part of “the environment,” but the only time we use it directly is to run other programs, which is covered in Section 26.2. The java.awt.Toolkit object is also part of the environment and is discussed in Chapter 12.

Get Java Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.