aspose file tools
The moose likes Beginning Java and the fly likes binaries and byte codes Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "binaries and byte codes" Watch "binaries and byte codes" New topic
Author

binaries and byte codes

parimal bajpai
Greenhorn

Joined: Jun 26, 2001
Posts: 8
what is the difference between binaries and byte codes
Dave Vick
Ranch Hand

Joined: May 10, 2001
Posts: 3244
parimal
Binary is the number system used by computers to store data. It is composed of a series of 1s and 0s.
Bytecodes are what the java compiler compiles your java source files into. Your .class files are made up of bytecode. It is these bytecode that any jvm can read, on any platform, and then interprets them and causes the specific OS to understand and execute the program.
hope that helps
Dave


Dave
Jason Ford
Ranch Hand

Joined: Aug 02, 2001
Posts: 54
Binary files are executable files that contain machine instructions for a specific platform. Bytecode is compiled Java source code that is interpeted by a JVM. Since computers use a binary system, both binaries and bytecode consist of a series of 1s and 0s.


SCJP, SCWCD
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: binaries and byte codes
 
Similar Threads
sending pdf files to IBM MQ
eclipse c/c++ ide
does anoymous inner class have a constructor?
eclipse: not platform independent ???
Old Codes, New Platform - Any Impacts?