![]() |
Sponsored Link •
|
Advertisement
|
Advertisement
|
This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.
Message:
*.* when specified as an argument it expands to a list of files in that directory. This is an Operting System feature.Since ur printing only the first element in this list ( args[0]) your able to see only the first name in this list
> public class joju > java joju *.* > or as > java joju *? > the output is the first file-name or directory-name in the working directory.
Replies: |
Sponsored Links
|