Programming In Java

 

    A high-level programming language developed by Sun Microsystems. Java was originally called OAK, and was designed for handheld devices and set-top boxes. Oak was unsuccessful so in 1995 Sun changed the name to Java and modified the language to take advantage of the burgeoning World Wide Web.

   Java is an object-oriented language similar to C++, but simplified to eliminate language features that cause common programming errors. Java source code files (files with a .java extension) are compiled into a format called bytecode (files with a .class extension), which can then be executed by a Java interpreter. Compiled Java code can run on most computers because Java interpreters and runtime environments, known as Java Virtual Machines (VMs), exist for most operating systems, including UNIX, the Macintosh OS, and Windows. Bytecode can also be converted directly into machine language instructions by a just-in-time compiler (JIT).

      Java is a general purpose programming language with a number of features that make the language well suited for use on the World Wide Web. Small Java applications are called Java applets and can be downloaded from a Web server and run on your computer by a Java-compatible Web browser, such as Netscape Navigator or Microsoft Internet Explorer.

Part 1  :

  1. Chapter 1: Basic In Java Programming
  2. Chapter 2: Procedural In Java Programming
  3. Chapter 3: Introduction to Objects
  4. Chapter 4: More about Objects
  5. Chapter 5: Introducing Applets
  6. Chapter 6: Components
  7. Chapter 7: Events
  8. Chapter 8: Layout Managers, Windows, and Dialogs
  9. Chapter 9: Images and Menus
  10. Chapter 10: I/O and Streams
  11. Chapter 11: Threads
  12. Chapter 12: Network Programming
  13. Chapter 13: Cut and Paste, Printing, Future Directions

Part 2:

               Java free tutorial

              Java programming style

Previous | Next