I have some doubt with DexFile

  • what is Dex file in android?
  • how Dex is working for android?
  • how it is use in debugging android app
  • Is it similar kind of java class file?

I need specific information please help on this.any real example wellcome! thanks nik

link|improve this question

plz Saw this link stackoverflow.com/questions/1249973/… – Gensheriff Oct 13 '11 at 6:57
feedback

2 Answers

up vote 2 down vote accepted
.dex file

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.

link|improve this answer
feedback
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.