About the .dex File
One of the most remarkable features of the Dalvik virtual machine (the workhorse under the Android system) is that it does not use Java bytecode. Instead, a homegrown format called DEX was introduced and not even the bytecode instructions are the same as Java bytecode instructions.
Compiled Android application code file.
Android programs are compiled into .dex (Dalvik Executable) files, which are in turn zipped into a single .apk file on the device. .dex files can be created by automatically translating compiled applications written in the Java programming language.
Dex file format
1.File Header
2.String Table
3.Class List
4.Field Table
5.Method Table
6.Class Definition Table
7.Field List
8.Method List
9.Code Header
10.Local Variable List
there is no much description about .dex file in android documentation.
you can find further more here. Dex File Format
.dex file is like same as the java class file but it seems to run under DVM.
You can decompile .dex using dexdump tool which is provided in android-sdk.
And also there are some reverse engineering techniques to make jar file or java class file from .dex file.