Naming Conventions
packages
lowercase.
Consider using the recommended domain-based conventions described in the Java Language Specification, page 107 as prefixes. (For example, EDU.oswego.cs.dl.)
files
The java compiler enforces the convention that file names have the same base name as the public class they define.
参考:http://g.oswego.edu/dl/html/javaCodingStd.html
JLS中应该会有描述的,自己看下吧:http://docs.oracle.com/javase/specs/jls/se7/jls7.pdf