Oracle takes over Sun Microsystems
We are pleased to announce that Oracle has completed its acquisition of Sun Microsystems and Sun is now a wholly owned subsidiary of Oracle. With this news, we want to reiterate our commitment to deliver complete, open and integrated systems that help our customers improve the performance, reliability and security of their IT infrastructure. We would also like to thank the many customers that have supported us throughout the acquisition process.
Categories: News, Press Releases Tags: Java, larry ellison, mysql, oracle, sun
Activating a Button using Java
In this code snippet, you will learn how to activate a Button control using Java
Read more…
Adding a Choice Component using Java
In this code snippet, you will learn how to add a choice component using Java language
A comparison between Java and C#
Ever since the advent of the internet, Java has been the target for many developers. Many C++ developers migrated to Java within a short period of time. Many high quality multithreaded animations, games, distributed applications are being developed and implemented successfully.
Categories: C#, Channels Tags: C#, exception, Java, java applets, multithreading
Java Vs C#
Ever since the advent of the internet, Java has been the target for many developers. Many C++ developers migrated to Java within a short period of time. Many high quality multithreaded animations, games, distributed applications are being developed and implemented successfully. Moreover the java language is completely platform independent. You can go through the java tutorial topics on this web site if you are having any doubt.
Working with Java Servlets
Servlets are programs that execute on the server side of a web connection. Servlets dynamically extend the functionality of a web server.
Remote Method Invocation (RMI)
RMI stands for Remote Method Invocation. A program running on a computer some where on the Internet can invoke a method that is resident in a program running somewhere else on the internet. To make this happen several things need to be done and all of them are built into the java.rmi package.
Working with Java Database Connectivity
Assume that ABC Ltd is an automobile sales part manufacturing company that has many branches across the world. The corporate office at New York maintains MSAccess database for the sales details of various products, stock with each branch, personnel details etc.
Understanding Multithreading
Java provides built in support for multithreaded programming. A Multithreaded program contains two or more parts that can run concurrently. Each part of such a program is called a Thread. Each thread defines a separate path of execution. Multithreading is a specialized form of Multitasking.
Categories: Channels, Java Tags: Java, multithreading, threads
Event Handling
In any interactive environment, the program should be able to respond to actions performed by the user. There actions can be Mouse click, Key Press or selection of a Menu Item. When the user initiates an action, the AWT generates an event and communicates it to event handlers. These event handlers can respond to the event appropriately.
Categories: Channels, Java Tags: event handling, Java

