7.12 Using Command-Line Arguments
It’s possible to pass arguments from the command line (these are known as command-line arguments) to an application by including a parameter of type String[]
(i.e., an array of String
s) in the parameter list of main
, exactly as we’ve done in every application in the book. By convention, this parameter is named args
. When an application is executed using the java
command, Java passes the command-line arguments that appear after the class name in the java
command to the application’s main
method as String
s in the array args
. The number of command-line arguments is obtained by accessing the array’s length
attribute. Common uses of command-line arguments include passing options and file names to applications.
Our ...
Get Java™ for Programmers: Deitel Developer Series, Second Edition 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.