Mapping classnames to pathnames

suggest change

The standard Java toolchain (and 3rd-party tools designed to interoperate with them) have specific rules for mapping the names of classes to the pathnames of files and other resources that represent them.

The mappings are as follows

This is illustrated in the following table:

Classname | Source pathname | Classfile pathname | —— | —— | —– |SomeClass | SomeClass.java | SomeClass.class |com.example.SomeClass | com/example/SomeClass.java | com/example/SomeClass.class |SomeClass.Inner | (in SomeClass.java ) | SomeClass$Inner.class |SomeClass anon inner classes | (in SomeClass.java ) | SomeClass$1.class, SomeClass$2.class, etc |

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


The Classpath:
* Mapping classnames to pathnames

Table Of Contents
8 Arrays
10 Maps
11 Strings
25 JAXB
29 Enums
32 Audio
41 Scanner
63 Logging
75 Lists
78 Sets
84 The Classpath
89 JAX-WS
96 XJC
98 Process
106 Modules
114 Applets
122 JNDI
139 JavaBean
141 Literals
144 Packages
150 JMX
153 JShell
159 Sockets
167 Enum Map
175 Hashtable
177 SortedMap