file names : Java Glossary

go to home page F words local find full screen, hide local find menu Google search web for more information on this topic jump to foot of page translate this page with Babelfish by Roedy Green ©1996-2009 Canadian Mind Products
index page for letter ⇒ punctuation 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z (all)
file names
Java lets you use any filename the current OS supports. However if your program uses any filenames not supplied by the end user, you want ones that will work on every conceivable platform. Consider avoiding names like this:

Case Sensitivity

In some platforms the precise case of each letter matters and on others it does not. For example Vista does not care, but Linux does. On a case sensitive system, strawberry.txt and Strawberry.txt are two separate files. This can lead to confusion when files are manipulated both in the program and externally with a GUI explorer or command line shell.

My rule of thumb is to keep all filenames lower case (easier to type), easier to remember, with the exception of the *.java and *.class files which must follow Java conventions.

Sort Order

When you are naming a group of similar files, think about how they will sort alphabetically. Files named with the pattern receipts-YYYY-MM-DD.log e.g. receipts-2008-12-31.log will sort more sensibly than receipts-MM-DD-YYYY.log. Even safer would be to use the pattern receiptYYYYMMDD.log.

CMP homejump to top
CMP logo
feedback Please email your feedback for publication, errors, omissions, broken/redirected link reports
and suggestions to improve this page to Roedy Green : feedback email
made with CSS
HTML Checked!
ICRA ratings logo
mindprod.com IP:[65.110.21.43]
Your face IP:[38.103.63.58]
You are visitor number 9,587.
You can get a fresh copy of this page from: or possibly from your local J: drive (Java virtual drive/mindprod.com website mirror)
http://mindprod.com/jgloss/filenames.html J:\mindprod\jgloss\filenames.html